| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  SSLv3/TLSv1 shared functions | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2020-09-05 12:53:20 +02:00
										 |  |  |  *  Copyright The Mbed TLS Contributors | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |  *  SPDX-License-Identifier: Apache-2.0 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |  * | 
					
						
							|  |  |  |  *  Licensed under the Apache License, Version 2.0 (the "License"); you may | 
					
						
							|  |  |  |  *  not use this file except in compliance with the License. | 
					
						
							|  |  |  |  *  You may obtain a copy of the License at | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  http://www.apache.org/licenses/LICENSE-2.0
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Unless required by applicable law or agreed to in writing, software | 
					
						
							|  |  |  |  *  distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | 
					
						
							|  |  |  |  *  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
					
						
							|  |  |  |  *  See the License for the specific language governing permissions and | 
					
						
							|  |  |  |  *  limitations under the License. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  *  The SSL 3.0 specification was drafted by Netscape in 1996, | 
					
						
							|  |  |  |  *  and became an IETF standard in 1999. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  http://wp.netscape.com/eng/ssl3/
 | 
					
						
							|  |  |  |  *  http://www.ietf.org/rfc/rfc2246.txt
 | 
					
						
							|  |  |  |  *  http://www.ietf.org/rfc/rfc4346.txt
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #include "common.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_TLS_C)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "mbedtls/platform.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "mbedtls/ssl.h"
 | 
					
						
							|  |  |  | #include "mbedtls/ssl_internal.h"
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #include "mbedtls/debug.h"
 | 
					
						
							|  |  |  | #include "mbedtls/error.h"
 | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  | #include "mbedtls/platform_util.h"
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #include "mbedtls/version.h"
 | 
					
						
							|  |  |  | #include "mbedtls/constant_time.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  | #include "mbedtls/psa_util.h"
 | 
					
						
							|  |  |  | #include "psa/crypto.h"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							|  |  |  | #include "mbedtls/oid.h"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
 | 
					
						
							|  |  |  | /* Top-level Connection ID API */ | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_conf_cid(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                          size_t len, | 
					
						
							|  |  |  |                          int ignore_other_cid) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (len > MBEDTLS_SSL_CID_IN_LEN_MAX) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ignore_other_cid != MBEDTLS_SSL_UNEXPECTED_CID_FAIL && | 
					
						
							|  |  |  |         ignore_other_cid != MBEDTLS_SSL_UNEXPECTED_CID_IGNORE) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     conf->ignore_unexpected_cid = ignore_other_cid; | 
					
						
							|  |  |  |     conf->cid_len = len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_set_cid(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                         int enable, | 
					
						
							|  |  |  |                         unsigned char const *own_cid, | 
					
						
							|  |  |  |                         size_t own_cid_len) | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     ssl->negotiate_cid = enable; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (enable == MBEDTLS_SSL_CID_DISABLED) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(3, ("Disable use of CID extension.")); | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(3, ("Enable use of CID extension.")); | 
					
						
							|  |  |  |     MBEDTLS_SSL_DEBUG_BUF(3, "Own CID", own_cid, own_cid_len); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (own_cid_len != ssl->conf->cid_len) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(3, ("CID length %u does not match CID length %u in config", | 
					
						
							|  |  |  |                                   (unsigned) own_cid_len, | 
					
						
							|  |  |  |                                   (unsigned) ssl->conf->cid_len)); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(ssl->own_cid, own_cid, own_cid_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* Truncation is not an issue here because
 | 
					
						
							|  |  |  |      * MBEDTLS_SSL_CID_IN_LEN_MAX at most 255. */ | 
					
						
							|  |  |  |     ssl->own_cid_len = (uint8_t) own_cid_len; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_get_peer_cid(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                              int *enabled, | 
					
						
							|  |  |  |                              unsigned char peer_cid[MBEDTLS_SSL_CID_OUT_LEN_MAX], | 
					
						
							|  |  |  |                              size_t *peer_cid_len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     *enabled = MBEDTLS_SSL_CID_DISABLED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM || | 
					
						
							|  |  |  |         ssl->state != MBEDTLS_SSL_HANDSHAKE_OVER) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* We report MBEDTLS_SSL_CID_DISABLED in case the CID extensions
 | 
					
						
							|  |  |  |      * were used, but client and server requested the empty CID. | 
					
						
							|  |  |  |      * This is indistinguishable from not using the CID extension | 
					
						
							|  |  |  |      * in the first place. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->transform_in->in_cid_len  == 0 && | 
					
						
							|  |  |  |         ssl->transform_in->out_cid_len == 0) { | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (peer_cid_len != NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         *peer_cid_len = ssl->transform_in->out_cid_len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (peer_cid != NULL) { | 
					
						
							|  |  |  |             memcpy(peer_cid, ssl->transform_in->out_cid, | 
					
						
							|  |  |  |                    ssl->transform_in->out_cid_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     *enabled = MBEDTLS_SSL_CID_ENABLED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_DTLS */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Convert max_fragment_length codes to length. | 
					
						
							|  |  |  |  * RFC 6066 says: | 
					
						
							|  |  |  |  *    enum{ | 
					
						
							|  |  |  |  *        2^9(1), 2^10(2), 2^11(3), 2^12(4), (255) | 
					
						
							|  |  |  |  *    } MaxFragmentLength; | 
					
						
							|  |  |  |  * and we add 0 -> extension unused | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static unsigned int ssl_mfl_code_to_length(int mfl) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     switch (mfl) { | 
					
						
							|  |  |  |         case MBEDTLS_SSL_MAX_FRAG_LEN_NONE: | 
					
						
							|  |  |  |             return MBEDTLS_TLS_EXT_ADV_CONTENT_LEN; | 
					
						
							|  |  |  |         case MBEDTLS_SSL_MAX_FRAG_LEN_512: | 
					
						
							|  |  |  |             return 512; | 
					
						
							|  |  |  |         case MBEDTLS_SSL_MAX_FRAG_LEN_1024: | 
					
						
							|  |  |  |             return 1024; | 
					
						
							|  |  |  |         case MBEDTLS_SSL_MAX_FRAG_LEN_2048: | 
					
						
							|  |  |  |             return 2048; | 
					
						
							|  |  |  |         case MBEDTLS_SSL_MAX_FRAG_LEN_4096: | 
					
						
							|  |  |  |             return 4096; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             return MBEDTLS_TLS_EXT_ADV_CONTENT_LEN; | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_MAX_FRAGMENT_LENGTH */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_session_copy(mbedtls_ssl_session *dst, | 
					
						
							|  |  |  |                              const mbedtls_ssl_session *src) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ssl_session_free(dst); | 
					
						
							|  |  |  |     memcpy(dst, src, sizeof(mbedtls_ssl_session)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_SESSION_TICKETS) && defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							|  |  |  |     dst->ticket = NULL; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (src->peer_cert != NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         dst->peer_cert = mbedtls_calloc(1, sizeof(mbedtls_x509_crt)); | 
					
						
							|  |  |  |         if (dst->peer_cert == NULL) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_ALLOC_FAILED; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_x509_crt_init(dst->peer_cert); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((ret = mbedtls_x509_crt_parse_der(dst->peer_cert, src->peer_cert->raw.p, | 
					
						
							|  |  |  |                                               src->peer_cert->raw.len)) != 0) { | 
					
						
							|  |  |  |             mbedtls_free(dst->peer_cert); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             dst->peer_cert = NULL; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (src->peer_cert_digest != NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         dst->peer_cert_digest = | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             mbedtls_calloc(1, src->peer_cert_digest_len); | 
					
						
							|  |  |  |         if (dst->peer_cert_digest == NULL) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_ALLOC_FAILED; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         memcpy(dst->peer_cert_digest, src->peer_cert_digest, | 
					
						
							|  |  |  |                src->peer_cert_digest_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         dst->peer_cert_digest_type = src->peer_cert_digest_type; | 
					
						
							|  |  |  |         dst->peer_cert_digest_len = src->peer_cert_digest_len; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_X509_CRT_PARSE_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SESSION_TICKETS) && defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (src->ticket != NULL) { | 
					
						
							|  |  |  |         dst->ticket = mbedtls_calloc(1, src->ticket_len); | 
					
						
							|  |  |  |         if (dst->ticket == NULL) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_ALLOC_FAILED; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         memcpy(dst->ticket, src->ticket, src->ticket_len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_SESSION_TICKETS && MBEDTLS_SSL_CLI_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH)
 | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int resize_buffer(unsigned char **buffer, size_t len_new, size_t *len_old) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     unsigned char *resized_buffer = mbedtls_calloc(1, len_new); | 
					
						
							|  |  |  |     if (resized_buffer == NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* We want to copy len_new bytes when downsizing the buffer, and
 | 
					
						
							|  |  |  |      * len_old bytes when upsizing, so we choose the smaller of two sizes, | 
					
						
							|  |  |  |      * to fit one buffer into another. Size checks, ensuring that no data is | 
					
						
							|  |  |  |      * lost, are done outside of this function. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(resized_buffer, *buffer, | 
					
						
							|  |  |  |            (len_new < *len_old) ? len_new : *len_old); | 
					
						
							|  |  |  |     mbedtls_platform_zeroize(*buffer, *len_old); | 
					
						
							|  |  |  |     mbedtls_free(*buffer); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     *buffer = resized_buffer; | 
					
						
							|  |  |  |     *len_old = len_new; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void handle_buffer_resizing(mbedtls_ssl_context *ssl, int downsizing, | 
					
						
							|  |  |  |                                    size_t in_buf_new_len, | 
					
						
							|  |  |  |                                    size_t out_buf_new_len) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int modified = 0; | 
					
						
							|  |  |  |     size_t written_in = 0, iv_offset_in = 0, len_offset_in = 0; | 
					
						
							|  |  |  |     size_t written_out = 0, iv_offset_out = 0, len_offset_out = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->in_buf != NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         written_in = ssl->in_msg - ssl->in_buf; | 
					
						
							|  |  |  |         iv_offset_in = ssl->in_iv - ssl->in_buf; | 
					
						
							|  |  |  |         len_offset_in = ssl->in_len - ssl->in_buf; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (downsizing ? | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             ssl->in_buf_len > in_buf_new_len && ssl->in_left < in_buf_new_len : | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             ssl->in_buf_len < in_buf_new_len) { | 
					
						
							|  |  |  |             if (resize_buffer(&ssl->in_buf, in_buf_new_len, &ssl->in_buf_len) != 0) { | 
					
						
							|  |  |  |                 MBEDTLS_SSL_DEBUG_MSG(1, ("input buffer resizing failed - out of memory")); | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 MBEDTLS_SSL_DEBUG_MSG(2, ("Reallocating in_buf to %" MBEDTLS_PRINTF_SIZET, | 
					
						
							|  |  |  |                                           in_buf_new_len)); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |                 modified = 1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->out_buf != NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         written_out = ssl->out_msg - ssl->out_buf; | 
					
						
							|  |  |  |         iv_offset_out = ssl->out_iv - ssl->out_buf; | 
					
						
							|  |  |  |         len_offset_out = ssl->out_len - ssl->out_buf; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (downsizing ? | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             ssl->out_buf_len > out_buf_new_len && ssl->out_left < out_buf_new_len : | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             ssl->out_buf_len < out_buf_new_len) { | 
					
						
							|  |  |  |             if (resize_buffer(&ssl->out_buf, out_buf_new_len, &ssl->out_buf_len) != 0) { | 
					
						
							|  |  |  |                 MBEDTLS_SSL_DEBUG_MSG(1, ("output buffer resizing failed - out of memory")); | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 MBEDTLS_SSL_DEBUG_MSG(2, ("Reallocating out_buf to %" MBEDTLS_PRINTF_SIZET, | 
					
						
							|  |  |  |                                           out_buf_new_len)); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |                 modified = 1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (modified) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         /* Update pointers here to avoid doing it twice. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_ssl_reset_in_out_pointers(ssl); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         /* Fields below might not be properly updated with record
 | 
					
						
							|  |  |  |          * splitting or with CID, so they are manually updated here. */ | 
					
						
							|  |  |  |         ssl->out_msg = ssl->out_buf + written_out; | 
					
						
							|  |  |  |         ssl->out_len = ssl->out_buf + len_offset_out; | 
					
						
							|  |  |  |         ssl->out_iv = ssl->out_buf + iv_offset_out; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ssl->in_msg = ssl->in_buf + written_in; | 
					
						
							|  |  |  |         ssl->in_len = ssl->in_buf + len_offset_in; | 
					
						
							|  |  |  |         ssl->in_iv = ssl->in_buf + iv_offset_in; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Key material generation | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3)
 | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl3_prf(const unsigned char *secret, size_t slen, | 
					
						
							|  |  |  |                     const char *label, | 
					
						
							|  |  |  |                     const unsigned char *random, size_t rlen, | 
					
						
							|  |  |  |                     unsigned char *dstbuf, size_t dlen) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  |     size_t i; | 
					
						
							|  |  |  |     mbedtls_md5_context md5; | 
					
						
							|  |  |  |     mbedtls_sha1_context sha1; | 
					
						
							|  |  |  |     unsigned char padding[16]; | 
					
						
							|  |  |  |     unsigned char sha1sum[20]; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ((void) label); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_init(&md5); | 
					
						
							|  |  |  |     mbedtls_sha1_init(&sha1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      *  SSLv3: | 
					
						
							|  |  |  |      *    block = | 
					
						
							|  |  |  |      *      MD5( secret + SHA1( 'A'    + secret + random ) ) + | 
					
						
							|  |  |  |      *      MD5( secret + SHA1( 'BB'   + secret + random ) ) + | 
					
						
							|  |  |  |      *      MD5( secret + SHA1( 'CCC'  + secret + random ) ) + | 
					
						
							|  |  |  |      *      ... | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     for (i = 0; i < dlen / 16; i++) { | 
					
						
							|  |  |  |         memset(padding, (unsigned char) ('A' + i), 1 + i); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((ret = mbedtls_sha1_starts_ret(&sha1)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         if ((ret = mbedtls_sha1_update_ret(&sha1, padding, 1 + i)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         if ((ret = mbedtls_sha1_update_ret(&sha1, secret, slen)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         if ((ret = mbedtls_sha1_update_ret(&sha1, random, rlen)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         if ((ret = mbedtls_sha1_finish_ret(&sha1, sha1sum)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((ret = mbedtls_md5_starts_ret(&md5)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         if ((ret = mbedtls_md5_update_ret(&md5, secret, slen)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         if ((ret = mbedtls_md5_update_ret(&md5, sha1sum, 20)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         if ((ret = mbedtls_md5_finish_ret(&md5, dstbuf + i * 16)) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_free(&md5); | 
					
						
							|  |  |  |     mbedtls_sha1_free(&sha1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(padding, sizeof(padding)); | 
					
						
							|  |  |  |     mbedtls_platform_zeroize(sha1sum, sizeof(sha1sum)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_SSL3 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1) || defined(MBEDTLS_SSL_PROTO_TLS1_1)
 | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int tls1_prf(const unsigned char *secret, size_t slen, | 
					
						
							|  |  |  |                     const char *label, | 
					
						
							|  |  |  |                     const unsigned char *random, size_t rlen, | 
					
						
							|  |  |  |                     unsigned char *dstbuf, size_t dlen) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     size_t nb, hs; | 
					
						
							|  |  |  |     size_t i, j, k; | 
					
						
							|  |  |  |     const unsigned char *S1, *S2; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     unsigned char *tmp; | 
					
						
							|  |  |  |     size_t tmp_len = 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     unsigned char h_i[20]; | 
					
						
							|  |  |  |     const mbedtls_md_info_t *md_info; | 
					
						
							|  |  |  |     mbedtls_md_context_t md_ctx; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md_init(&md_ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     tmp_len = 20 + strlen(label) + rlen; | 
					
						
							|  |  |  |     tmp = mbedtls_calloc(1, tmp_len); | 
					
						
							|  |  |  |     if (tmp == NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ret = MBEDTLS_ERR_SSL_ALLOC_FAILED; | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     hs = (slen + 1) / 2; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     S1 = secret; | 
					
						
							|  |  |  |     S2 = secret + slen - hs; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     nb = strlen(label); | 
					
						
							|  |  |  |     memcpy(tmp + 20, label, nb); | 
					
						
							|  |  |  |     memcpy(tmp + 20 + nb, random, rlen); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     nb += rlen; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * First compute P_md5(secret,label+random)[0..dlen] | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((md_info = mbedtls_md_info_from_type(MBEDTLS_MD_MD5)) == NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         ret = MBEDTLS_ERR_SSL_INTERNAL_ERROR; | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_md_setup(&md_ctx, md_info, 1)) != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = mbedtls_md_hmac_starts(&md_ctx, S1, hs); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     ret = mbedtls_md_hmac_update(&md_ctx, tmp + 20, nb); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     ret = mbedtls_md_hmac_finish(&md_ctx, 4 + tmp); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     for (i = 0; i < dlen; i += 16) { | 
					
						
							|  |  |  |         ret = mbedtls_md_hmac_reset(&md_ctx); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         ret = mbedtls_md_hmac_update(&md_ctx, 4 + tmp, 16 + nb); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         ret = mbedtls_md_hmac_finish(&md_ctx, h_i); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ret = mbedtls_md_hmac_reset(&md_ctx); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         ret = mbedtls_md_hmac_update(&md_ctx, 4 + tmp, 16); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         ret = mbedtls_md_hmac_finish(&md_ctx, 4 + tmp); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         k = (i + 16 > dlen) ? dlen % 16 : 16; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         for (j = 0; j < k; j++) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             dstbuf[i + j]  = h_i[j]; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md_free(&md_ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * XOR out with P_sha1(secret,label+random)[0..dlen] | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((md_info = mbedtls_md_info_from_type(MBEDTLS_MD_SHA1)) == NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         ret = MBEDTLS_ERR_SSL_INTERNAL_ERROR; | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_md_setup(&md_ctx, md_info, 1)) != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = mbedtls_md_hmac_starts(&md_ctx, S2, hs); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     ret = mbedtls_md_hmac_update(&md_ctx, tmp + 20, nb); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     ret = mbedtls_md_hmac_finish(&md_ctx, tmp); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     for (i = 0; i < dlen; i += 20) { | 
					
						
							|  |  |  |         ret = mbedtls_md_hmac_reset(&md_ctx); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         ret = mbedtls_md_hmac_update(&md_ctx, tmp, 20 + nb); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         ret = mbedtls_md_hmac_finish(&md_ctx, h_i); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ret = mbedtls_md_hmac_reset(&md_ctx); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         ret = mbedtls_md_hmac_update(&md_ctx, tmp, 20); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         ret = mbedtls_md_hmac_finish(&md_ctx, tmp); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         k = (i + 20 > dlen) ? dlen % 20 : 20; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         for (j = 0; j < k; j++) { | 
					
						
							|  |  |  |             dstbuf[i + j] = (unsigned char) (dstbuf[i + j] ^ h_i[j]); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  | exit: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md_free(&md_ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(tmp, tmp_len); | 
					
						
							|  |  |  |     mbedtls_platform_zeroize(h_i, sizeof(h_i)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_free(tmp); | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1) || MBEDTLS_SSL_PROTO_TLS1_1 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static psa_status_t setup_psa_key_derivation(psa_key_derivation_operation_t *derivation, | 
					
						
							|  |  |  |                                              psa_key_id_t key, | 
					
						
							|  |  |  |                                              psa_algorithm_t alg, | 
					
						
							|  |  |  |                                              const unsigned char *seed, size_t seed_length, | 
					
						
							|  |  |  |                                              const unsigned char *label, size_t label_length, | 
					
						
							|  |  |  |                                              size_t capacity) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     psa_status_t status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     status = psa_key_derivation_setup(derivation, alg); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         return status; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (PSA_ALG_IS_TLS12_PRF(alg) || PSA_ALG_IS_TLS12_PSK_TO_MS(alg)) { | 
					
						
							|  |  |  |         status = psa_key_derivation_input_bytes(derivation, | 
					
						
							|  |  |  |                                                 PSA_KEY_DERIVATION_INPUT_SEED, | 
					
						
							|  |  |  |                                                 seed, seed_length); | 
					
						
							|  |  |  |         if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |             return status; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (mbedtls_svc_key_id_is_null(key)) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             status = psa_key_derivation_input_bytes( | 
					
						
							|  |  |  |                 derivation, PSA_KEY_DERIVATION_INPUT_SECRET, | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                 NULL, 0); | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             status = psa_key_derivation_input_key( | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                 derivation, PSA_KEY_DERIVATION_INPUT_SECRET, key); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |             return status; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         status = psa_key_derivation_input_bytes(derivation, | 
					
						
							|  |  |  |                                                 PSA_KEY_DERIVATION_INPUT_LABEL, | 
					
						
							|  |  |  |                                                 label, label_length); | 
					
						
							|  |  |  |         if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |             return status; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         return PSA_ERROR_NOT_SUPPORTED; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     status = psa_key_derivation_set_capacity(derivation, capacity); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         return status; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return PSA_SUCCESS; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int tls_prf_generic(mbedtls_md_type_t md_type, | 
					
						
							|  |  |  |                            const unsigned char *secret, size_t slen, | 
					
						
							|  |  |  |                            const char *label, | 
					
						
							|  |  |  |                            const unsigned char *random, size_t rlen, | 
					
						
							|  |  |  |                            unsigned char *dstbuf, size_t dlen) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     psa_status_t status; | 
					
						
							|  |  |  |     psa_algorithm_t alg; | 
					
						
							|  |  |  |     psa_key_id_t master_key = MBEDTLS_SVC_KEY_ID_INIT; | 
					
						
							|  |  |  |     psa_key_derivation_operation_t derivation = | 
					
						
							|  |  |  |         PSA_KEY_DERIVATION_OPERATION_INIT; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (md_type == MBEDTLS_MD_SHA384) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         alg = PSA_ALG_TLS12_PRF(PSA_ALG_SHA_384); | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         alg = PSA_ALG_TLS12_PRF(PSA_ALG_SHA_256); | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Normally a "secret" should be long enough to be impossible to
 | 
					
						
							|  |  |  |      * find by brute force, and in particular should not be empty. But | 
					
						
							|  |  |  |      * this PRF is also used to derive an IV, in particular in EAP-TLS, | 
					
						
							|  |  |  |      * and for this use case it makes sense to have a 0-length "secret". | 
					
						
							|  |  |  |      * Since the key API doesn't allow importing a key of length 0, | 
					
						
							|  |  |  |      * keep master_key=0, which setup_psa_key_derivation() understands | 
					
						
							|  |  |  |      * to mean a 0-length "secret" input. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (slen != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         psa_key_attributes_t key_attributes = psa_key_attributes_init(); | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         psa_set_key_usage_flags(&key_attributes, PSA_KEY_USAGE_DERIVE); | 
					
						
							|  |  |  |         psa_set_key_algorithm(&key_attributes, alg); | 
					
						
							|  |  |  |         psa_set_key_type(&key_attributes, PSA_KEY_TYPE_DERIVE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         status = psa_import_key(&key_attributes, secret, slen, &master_key); | 
					
						
							|  |  |  |         if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_HW_ACCEL_FAILED; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     status = setup_psa_key_derivation(&derivation, | 
					
						
							|  |  |  |                                       master_key, alg, | 
					
						
							|  |  |  |                                       random, rlen, | 
					
						
							|  |  |  |                                       (unsigned char const *) label, | 
					
						
							|  |  |  |                                       (size_t) strlen(label), | 
					
						
							|  |  |  |                                       dlen); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         psa_key_derivation_abort(&derivation); | 
					
						
							|  |  |  |         psa_destroy_key(master_key); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_HW_ACCEL_FAILED; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     status = psa_key_derivation_output_bytes(&derivation, dstbuf, dlen); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         psa_key_derivation_abort(&derivation); | 
					
						
							|  |  |  |         psa_destroy_key(master_key); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_HW_ACCEL_FAILED; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     status = psa_key_derivation_abort(&derivation); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         psa_destroy_key(master_key); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_HW_ACCEL_FAILED; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (!mbedtls_svc_key_id_is_null(master_key)) { | 
					
						
							|  |  |  |         status = psa_destroy_key(master_key); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_HW_ACCEL_FAILED; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #else /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int tls_prf_generic(mbedtls_md_type_t md_type, | 
					
						
							|  |  |  |                            const unsigned char *secret, size_t slen, | 
					
						
							|  |  |  |                            const char *label, | 
					
						
							|  |  |  |                            const unsigned char *random, size_t rlen, | 
					
						
							|  |  |  |                            unsigned char *dstbuf, size_t dlen) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     size_t nb; | 
					
						
							|  |  |  |     size_t i, j, k, md_len; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     unsigned char *tmp; | 
					
						
							|  |  |  |     size_t tmp_len = 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     unsigned char h_i[MBEDTLS_MD_MAX_SIZE]; | 
					
						
							|  |  |  |     const mbedtls_md_info_t *md_info; | 
					
						
							|  |  |  |     mbedtls_md_context_t md_ctx; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md_init(&md_ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((md_info = mbedtls_md_info_from_type(md_type)) == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_INTERNAL_ERROR; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     md_len = mbedtls_md_get_size(md_info); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     tmp_len = md_len + strlen(label) + rlen; | 
					
						
							|  |  |  |     tmp = mbedtls_calloc(1, tmp_len); | 
					
						
							|  |  |  |     if (tmp == NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ret = MBEDTLS_ERR_SSL_ALLOC_FAILED; | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     nb = strlen(label); | 
					
						
							|  |  |  |     memcpy(tmp + md_len, label, nb); | 
					
						
							|  |  |  |     memcpy(tmp + md_len + nb, random, rlen); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     nb += rlen; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Compute P_<hash>(secret, label + random)[0..dlen] | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_md_setup(&md_ctx, md_info, 1)) != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = mbedtls_md_hmac_starts(&md_ctx, secret, slen); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     ret = mbedtls_md_hmac_update(&md_ctx, tmp + md_len, nb); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     ret = mbedtls_md_hmac_finish(&md_ctx, tmp); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     for (i = 0; i < dlen; i += md_len) { | 
					
						
							|  |  |  |         ret = mbedtls_md_hmac_reset(&md_ctx); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         ret = mbedtls_md_hmac_update(&md_ctx, tmp, md_len + nb); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         ret = mbedtls_md_hmac_finish(&md_ctx, h_i); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ret = mbedtls_md_hmac_reset(&md_ctx); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         ret = mbedtls_md_hmac_update(&md_ctx, tmp, md_len); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         ret = mbedtls_md_hmac_finish(&md_ctx, tmp); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         k = (i + md_len > dlen) ? dlen % md_len : md_len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         for (j = 0; j < k; j++) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             dstbuf[i + j]  = h_i[j]; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  | exit: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md_free(&md_ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (tmp != NULL) { | 
					
						
							|  |  |  |         mbedtls_platform_zeroize(tmp, tmp_len); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(h_i, sizeof(h_i)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_free(tmp); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_SHA256_C)
 | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int tls_prf_sha256(const unsigned char *secret, size_t slen, | 
					
						
							|  |  |  |                           const char *label, | 
					
						
							|  |  |  |                           const unsigned char *random, size_t rlen, | 
					
						
							|  |  |  |                           unsigned char *dstbuf, size_t dlen) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return tls_prf_generic(MBEDTLS_MD_SHA256, secret, slen, | 
					
						
							|  |  |  |                            label, random, rlen, dstbuf, dlen); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SHA256_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_SHA512_NO_SHA384)
 | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int tls_prf_sha384(const unsigned char *secret, size_t slen, | 
					
						
							|  |  |  |                           const char *label, | 
					
						
							|  |  |  |                           const unsigned char *random, size_t rlen, | 
					
						
							|  |  |  |                           unsigned char *dstbuf, size_t dlen) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return tls_prf_generic(MBEDTLS_MD_SHA384, secret, slen, | 
					
						
							|  |  |  |                            label, random, rlen, dstbuf, dlen); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SHA512_C && !MBEDTLS_SHA512_NO_SHA384 */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ssl_update_checksum_start(mbedtls_ssl_context *, const unsigned char *, size_t); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3) || defined(MBEDTLS_SSL_PROTO_TLS1) || \
 | 
					
						
							|  |  |  |     defined(MBEDTLS_SSL_PROTO_TLS1_1) | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ssl_update_checksum_md5sha1(mbedtls_ssl_context *, const unsigned char *, size_t); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ssl_calc_verify_ssl(const mbedtls_ssl_context *, unsigned char *, size_t *); | 
					
						
							|  |  |  | static void ssl_calc_finished_ssl(mbedtls_ssl_context *, unsigned char *, int); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1) || defined(MBEDTLS_SSL_PROTO_TLS1_1)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ssl_calc_verify_tls(const mbedtls_ssl_context *, unsigned char *, size_t *); | 
					
						
							|  |  |  | static void ssl_calc_finished_tls(mbedtls_ssl_context *, unsigned char *, int); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA256_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ssl_update_checksum_sha256(mbedtls_ssl_context *, const unsigned char *, size_t); | 
					
						
							|  |  |  | static void ssl_calc_verify_tls_sha256(const mbedtls_ssl_context *, unsigned char *, size_t *); | 
					
						
							|  |  |  | static void ssl_calc_finished_tls_sha256(mbedtls_ssl_context *, unsigned char *, int); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_SHA512_NO_SHA384)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ssl_update_checksum_sha384(mbedtls_ssl_context *, const unsigned char *, size_t); | 
					
						
							|  |  |  | static void ssl_calc_verify_tls_sha384(const mbedtls_ssl_context *, unsigned char *, size_t *); | 
					
						
							|  |  |  | static void ssl_calc_finished_tls_sha384(mbedtls_ssl_context *, unsigned char *, int); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_KEY_EXCHANGE_PSK_ENABLED) && \
 | 
					
						
							|  |  |  |     defined(MBEDTLS_USE_PSA_CRYPTO) | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_use_opaque_psk(mbedtls_ssl_context const *ssl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->f_psk != NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         /* If we've used a callback to select the PSK,
 | 
					
						
							|  |  |  |          * the static configuration is irrelevant. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (!mbedtls_svc_key_id_is_null(ssl->handshake->psk_opaque)) { | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (!mbedtls_svc_key_id_is_null(ssl->conf->psk_opaque)) { | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO &&
 | 
					
						
							|  |  |  |           MBEDTLS_KEY_EXCHANGE_PSK_ENABLED */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_EXPORT_KEYS)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static mbedtls_tls_prf_types tls_prf_get_type(mbedtls_ssl_tls_prf_cb *tls_prf) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (tls_prf == ssl3_prf) { | 
					
						
							|  |  |  |         return MBEDTLS_SSL_TLS_PRF_SSL3; | 
					
						
							|  |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1) || defined(MBEDTLS_SSL_PROTO_TLS1_1)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (tls_prf == tls1_prf) { | 
					
						
							|  |  |  |         return MBEDTLS_SSL_TLS_PRF_TLS1; | 
					
						
							|  |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_SHA512_NO_SHA384)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (tls_prf == tls_prf_sha384) { | 
					
						
							|  |  |  |         return MBEDTLS_SSL_TLS_PRF_SHA384; | 
					
						
							|  |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA256_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (tls_prf == tls_prf_sha256) { | 
					
						
							|  |  |  |         return MBEDTLS_SSL_TLS_PRF_SHA256; | 
					
						
							|  |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return MBEDTLS_SSL_TLS_PRF_NONE; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_EXPORT_KEYS */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int  mbedtls_ssl_tls_prf(const mbedtls_tls_prf_types prf, | 
					
						
							|  |  |  |                          const unsigned char *secret, size_t slen, | 
					
						
							|  |  |  |                          const char *label, | 
					
						
							|  |  |  |                          const unsigned char *random, size_t rlen, | 
					
						
							|  |  |  |                          unsigned char *dstbuf, size_t dlen) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     mbedtls_ssl_tls_prf_cb *tls_prf = NULL; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     switch (prf) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3)
 | 
					
						
							|  |  |  |         case MBEDTLS_SSL_TLS_PRF_SSL3: | 
					
						
							|  |  |  |             tls_prf = ssl3_prf; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_PROTO_SSL3 */
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1) || defined(MBEDTLS_SSL_PROTO_TLS1_1)
 | 
					
						
							|  |  |  |         case MBEDTLS_SSL_TLS_PRF_TLS1: | 
					
						
							|  |  |  |             tls_prf = tls1_prf; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1 || MBEDTLS_SSL_PROTO_TLS1_1 */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_SHA512_NO_SHA384)
 | 
					
						
							|  |  |  |         case MBEDTLS_SSL_TLS_PRF_SHA384: | 
					
						
							|  |  |  |             tls_prf = tls_prf_sha384; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SHA512_C && !MBEDTLS_SHA512_NO_SHA384 */
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA256_C)
 | 
					
						
							|  |  |  |         case MBEDTLS_SSL_TLS_PRF_SHA256: | 
					
						
							|  |  |  |             tls_prf = tls_prf_sha256; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SHA256_C */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         default: | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return tls_prf(secret, slen, label, random, rlen, dstbuf, dlen); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | /* Type for the TLS PRF */ | 
					
						
							|  |  |  | typedef int ssl_tls_prf_t(const unsigned char *, size_t, const char *, | 
					
						
							|  |  |  |                           const unsigned char *, size_t, | 
					
						
							|  |  |  |                           unsigned char *, size_t); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Populate a transform structure with session keys and all the other | 
					
						
							|  |  |  |  * necessary information. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Parameters: | 
					
						
							|  |  |  |  * - [in/out]: transform: structure to populate | 
					
						
							|  |  |  |  *      [in] must be just initialised with mbedtls_ssl_transform_init() | 
					
						
							|  |  |  |  *      [out] fully populated, ready for use by mbedtls_ssl_{en,de}crypt_buf() | 
					
						
							|  |  |  |  * - [in] ciphersuite | 
					
						
							|  |  |  |  * - [in] master | 
					
						
							|  |  |  |  * - [in] encrypt_then_mac | 
					
						
							|  |  |  |  * - [in] trunc_hmac | 
					
						
							|  |  |  |  * - [in] compression | 
					
						
							|  |  |  |  * - [in] tls_prf: pointer to PRF to use for key derivation | 
					
						
							|  |  |  |  * - [in] randbytes: buffer holding ServerHello.random + ClientHello.random | 
					
						
							|  |  |  |  * - [in] minor_ver: SSL/TLS minor version | 
					
						
							|  |  |  |  * - [in] endpoint: client or server | 
					
						
							|  |  |  |  * - [in] ssl: optionally used for: | 
					
						
							|  |  |  |  *        - MBEDTLS_SSL_HW_RECORD_ACCEL: whole context (non-const) | 
					
						
							|  |  |  |  *        - MBEDTLS_SSL_EXPORT_KEYS: ssl->conf->{f,p}_export_keys | 
					
						
							|  |  |  |  *        - MBEDTLS_DEBUG_C: ssl->conf->{f,p}_dbg | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_populate_transform(mbedtls_ssl_transform *transform, | 
					
						
							|  |  |  |                                   int ciphersuite, | 
					
						
							|  |  |  |                                   const unsigned char master[48], | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_SOME_MODES_USE_MAC)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                                   int encrypt_then_mac, | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_ENCRYPT_THEN_MAC */
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                                   int trunc_hmac, | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_TRUNCATED_HMAC */
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_SOME_MODES_USE_MAC */
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ZLIB_SUPPORT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                                   int compression, | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                                   ssl_tls_prf_t tls_prf, | 
					
						
							|  |  |  |                                   const unsigned char randbytes[64], | 
					
						
							|  |  |  |                                   int minor_ver, | 
					
						
							|  |  |  |                                   unsigned endpoint, | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if !defined(MBEDTLS_SSL_HW_RECORD_ACCEL)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                                   const | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                                   mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  |     int psa_fallthrough; | 
					
						
							|  |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  |     int do_mbedtls_cipher_setup; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     unsigned char keyblk[256]; | 
					
						
							|  |  |  |     unsigned char *key1; | 
					
						
							|  |  |  |     unsigned char *key2; | 
					
						
							|  |  |  |     unsigned char *mac_enc; | 
					
						
							|  |  |  |     unsigned char *mac_dec; | 
					
						
							|  |  |  |     size_t mac_key_len = 0; | 
					
						
							|  |  |  |     size_t iv_copy_len; | 
					
						
							|  |  |  |     unsigned keylen; | 
					
						
							|  |  |  |     const mbedtls_ssl_ciphersuite_t *ciphersuite_info; | 
					
						
							|  |  |  |     const mbedtls_cipher_info_t *cipher_info; | 
					
						
							|  |  |  |     const mbedtls_md_info_t *md_info; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if !defined(MBEDTLS_SSL_HW_RECORD_ACCEL) && \
 | 
					
						
							|  |  |  |     !defined(MBEDTLS_SSL_EXPORT_KEYS) && \ | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  |     !defined(MBEDTLS_SSL_DTLS_CONNECTION_ID) && \ | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     !defined(MBEDTLS_DEBUG_C) | 
					
						
							|  |  |  |     ssl = NULL; /* make sure we don't use it except for those cases */ | 
					
						
							|  |  |  |     (void) ssl; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |      * Some data just needs copying into the structure | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC) && \
 | 
					
						
							|  |  |  |     defined(MBEDTLS_SSL_SOME_MODES_USE_MAC) | 
					
						
							|  |  |  |     transform->encrypt_then_mac = encrypt_then_mac; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     transform->minor_ver = minor_ver; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(transform->randbytes, randbytes, sizeof(transform->randbytes)); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |      * Get various info structures | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ciphersuite_info = mbedtls_ssl_ciphersuite_from_id(ciphersuite); | 
					
						
							|  |  |  |     if (ciphersuite_info == NULL) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("ciphersuite info for %d not found", | 
					
						
							|  |  |  |                                   ciphersuite)); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     cipher_info = mbedtls_cipher_info_from_type(ciphersuite_info->cipher); | 
					
						
							|  |  |  |     if (cipher_info == NULL) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("cipher info for %u not found", | 
					
						
							|  |  |  |                                   ciphersuite_info->cipher)); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     md_info = mbedtls_md_info_from_type(ciphersuite_info->mac); | 
					
						
							|  |  |  |     if (md_info == NULL) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("mbedtls_md info for %u not found", | 
					
						
							|  |  |  |                                   (unsigned) ciphersuite_info->mac)); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
 | 
					
						
							|  |  |  |     /* Copy own and peer's CID if the use of the CID
 | 
					
						
							|  |  |  |      * extension has been negotiated. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->handshake->cid_in_use == MBEDTLS_SSL_CID_ENABLED) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(3, ("Copy CIDs into SSL transform")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         transform->in_cid_len = ssl->own_cid_len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         memcpy(transform->in_cid, ssl->own_cid, ssl->own_cid_len); | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_BUF(3, "Incoming CID", transform->in_cid, | 
					
						
							|  |  |  |                               transform->in_cid_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         transform->out_cid_len = ssl->handshake->peer_cid_len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         memcpy(transform->out_cid, ssl->handshake->peer_cid, | 
					
						
							|  |  |  |                ssl->handshake->peer_cid_len); | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_BUF(3, "Outgoing CID", transform->out_cid, | 
					
						
							|  |  |  |                               transform->out_cid_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Compute key block using the PRF | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = tls_prf(master, 48, "key expansion", randbytes, 64, keyblk, 256); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "prf", ret); | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(3, ("ciphersuite = %s", | 
					
						
							|  |  |  |                               mbedtls_ssl_get_ciphersuite_name(ciphersuite))); | 
					
						
							|  |  |  |     MBEDTLS_SSL_DEBUG_BUF(3, "master secret", master, 48); | 
					
						
							|  |  |  |     MBEDTLS_SSL_DEBUG_BUF(4, "random bytes", randbytes, 64); | 
					
						
							|  |  |  |     MBEDTLS_SSL_DEBUG_BUF(4, "key block", keyblk, 256); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Determine the appropriate key, IV and MAC length. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     keylen = cipher_info->key_bitlen / 8; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_GCM_C) ||                           \
 | 
					
						
							|  |  |  |     defined(MBEDTLS_CCM_C) ||                           \ | 
					
						
							|  |  |  |     defined(MBEDTLS_CHACHAPOLY_C) | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (cipher_info->mode == MBEDTLS_MODE_GCM || | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  |         cipher_info->mode == MBEDTLS_MODE_CCM || | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         cipher_info->mode == MBEDTLS_MODE_CHACHAPOLY) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         size_t explicit_ivlen; | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         transform->maclen = 0; | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  |         mac_key_len = 0; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         transform->taglen = | 
					
						
							|  |  |  |             ciphersuite_info->flags & MBEDTLS_CIPHERSUITE_SHORT_TAG ? 8 : 16; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* All modes haves 96-bit IVs, but the length of the static parts vary
 | 
					
						
							|  |  |  |          * with mode and version: | 
					
						
							|  |  |  |          * - For GCM and CCM in TLS 1.2, there's a static IV of 4 Bytes | 
					
						
							|  |  |  |          *   (to be concatenated with a dynamically chosen IV of 8 Bytes) | 
					
						
							|  |  |  |          * - For ChaChaPoly in TLS 1.2, and all modes in TLS 1.3, there's | 
					
						
							|  |  |  |          *   a static IV of 12 Bytes (to be XOR'ed with the 8 Byte record | 
					
						
							|  |  |  |          *   sequence number). | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  |          */ | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         transform->ivlen = 12; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1_3_EXPERIMENTAL)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (minor_ver == MBEDTLS_SSL_MINOR_VERSION_4) { | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  |             transform->fixed_ivlen = 12; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } else | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1_3_EXPERIMENTAL */
 | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             if (cipher_info->mode == MBEDTLS_MODE_CHACHAPOLY) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |                 transform->fixed_ivlen = 12; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |                 transform->fixed_ivlen = 4; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* Minimum length of encrypted record */ | 
					
						
							|  |  |  |         explicit_ivlen = transform->ivlen - transform->fixed_ivlen; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         transform->minlen = explicit_ivlen + transform->taglen; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_GCM_C || MBEDTLS_CCM_C || MBEDTLS_CHACHAPOLY_C */
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SOME_MODES_USE_MAC)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (cipher_info->mode == MBEDTLS_MODE_STREAM || | 
					
						
							|  |  |  |         cipher_info->mode == MBEDTLS_MODE_CBC) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         /* Initialize HMAC contexts */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((ret = mbedtls_md_setup(&transform->md_ctx_enc, md_info, 1)) != 0 || | 
					
						
							|  |  |  |             (ret = mbedtls_md_setup(&transform->md_ctx_dec, md_info, 1)) != 0) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_md_setup", ret); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Get MAC length */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mac_key_len = mbedtls_md_get_size(md_info); | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  |         transform->maclen = mac_key_len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * If HMAC is to be truncated, we shall keep the leftmost bytes, | 
					
						
							|  |  |  |          * (rfc 6066 page 13 or rfc 2104 section 4), | 
					
						
							|  |  |  |          * so we only need to adjust the length here. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (trunc_hmac == MBEDTLS_SSL_TRUNC_HMAC_ENABLED) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             transform->maclen = MBEDTLS_SSL_TRUNCATED_HMAC_LEN; | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_TRUNCATED_HMAC_COMPAT)
 | 
					
						
							|  |  |  |             /* Fall back to old, non-compliant version of the truncated
 | 
					
						
							|  |  |  |              * HMAC implementation which also truncates the key | 
					
						
							|  |  |  |              * (Mbed TLS versions from 1.3 to 2.6.0) */ | 
					
						
							|  |  |  |             mac_key_len = transform->maclen; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_TRUNCATED_HMAC */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* IV length */ | 
					
						
							|  |  |  |         transform->ivlen = cipher_info->iv_size; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Minimum length */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (cipher_info->mode == MBEDTLS_MODE_STREAM) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             transform->minlen = transform->maclen; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             /*
 | 
					
						
							|  |  |  |              * GenericBlockCipher: | 
					
						
							|  |  |  |              * 1. if EtM is in use: one block plus MAC | 
					
						
							|  |  |  |              *    otherwise: * first multiple of blocklen greater than maclen | 
					
						
							|  |  |  |              * 2. IV except for SSL3 and TLS 1.0 | 
					
						
							|  |  |  |              */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             if (encrypt_then_mac == MBEDTLS_SSL_ETM_ENABLED) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |                 transform->minlen = transform->maclen | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                                     + cipher_info->block_size; | 
					
						
							|  |  |  |             } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 transform->minlen = transform->maclen | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                                     + cipher_info->block_size | 
					
						
							|  |  |  |                                     - transform->maclen % cipher_info->block_size; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3) || defined(MBEDTLS_SSL_PROTO_TLS1)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             if (minor_ver == MBEDTLS_SSL_MINOR_VERSION_0 || | 
					
						
							|  |  |  |                 minor_ver == MBEDTLS_SSL_MINOR_VERSION_1) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |                 ; /* No need to adjust minlen */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1_1) || defined(MBEDTLS_SSL_PROTO_TLS1_2)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             if (minor_ver == MBEDTLS_SSL_MINOR_VERSION_2 || | 
					
						
							|  |  |  |                 minor_ver == MBEDTLS_SSL_MINOR_VERSION_3) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |                 transform->minlen += transform->ivlen; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |             { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                 MBEDTLS_SSL_DEBUG_MSG(1, ("should never happen")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |                 ret = MBEDTLS_ERR_SSL_INTERNAL_ERROR; | 
					
						
							|  |  |  |                 goto end; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_SOME_MODES_USE_MAC */
 | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("should never happen")); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_INTERNAL_ERROR; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(3, ("keylen: %u, minlen: %u, ivlen: %u, maclen: %u", | 
					
						
							|  |  |  |                               (unsigned) keylen, | 
					
						
							|  |  |  |                               (unsigned) transform->minlen, | 
					
						
							|  |  |  |                               (unsigned) transform->ivlen, | 
					
						
							|  |  |  |                               (unsigned) transform->maclen)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Finally setup the cipher contexts, IVs and MAC secrets. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (endpoint == MBEDTLS_SSL_IS_CLIENT) { | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  |         key1 = keyblk + mac_key_len * 2; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         key2 = keyblk + mac_key_len * 2 + keylen; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         mac_enc = keyblk; | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  |         mac_dec = keyblk + mac_key_len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * This is not used in TLS v1.1. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         iv_copy_len = (transform->fixed_ivlen) ? | 
					
						
							|  |  |  |                       transform->fixed_ivlen : transform->ivlen; | 
					
						
							|  |  |  |         memcpy(transform->iv_enc, key2 + keylen,  iv_copy_len); | 
					
						
							|  |  |  |         memcpy(transform->iv_dec, key2 + keylen + iv_copy_len, | 
					
						
							|  |  |  |                iv_copy_len); | 
					
						
							|  |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_CLI_C */
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (endpoint == MBEDTLS_SSL_IS_SERVER) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         key1 = keyblk + mac_key_len * 2 + keylen; | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  |         key2 = keyblk + mac_key_len * 2; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-28 17:26:33 +02:00
										 |  |  |         mac_enc = keyblk + mac_key_len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         mac_dec = keyblk; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * This is not used in TLS v1.1. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         iv_copy_len = (transform->fixed_ivlen) ? | 
					
						
							|  |  |  |                       transform->fixed_ivlen : transform->ivlen; | 
					
						
							|  |  |  |         memcpy(transform->iv_dec, key1 + keylen,  iv_copy_len); | 
					
						
							|  |  |  |         memcpy(transform->iv_enc, key1 + keylen + iv_copy_len, | 
					
						
							|  |  |  |                iv_copy_len); | 
					
						
							|  |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_SRV_C */
 | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("should never happen")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ret = MBEDTLS_ERR_SSL_INTERNAL_ERROR; | 
					
						
							|  |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_SOME_MODES_USE_MAC)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (minor_ver == MBEDTLS_SSL_MINOR_VERSION_0) { | 
					
						
							|  |  |  |         if (mac_key_len > sizeof(transform->mac_enc)) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_MSG(1, ("should never happen")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             ret = MBEDTLS_ERR_SSL_INTERNAL_ERROR; | 
					
						
							|  |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         memcpy(transform->mac_enc, mac_enc, mac_key_len); | 
					
						
							|  |  |  |         memcpy(transform->mac_dec, mac_dec, mac_key_len); | 
					
						
							|  |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_PROTO_SSL3 */
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1) || defined(MBEDTLS_SSL_PROTO_TLS1_1) || \
 | 
					
						
							|  |  |  |     defined(MBEDTLS_SSL_PROTO_TLS1_2) | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (minor_ver >= MBEDTLS_SSL_MINOR_VERSION_1) { | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |         /* For HMAC-based ciphersuites, initialize the HMAC transforms.
 | 
					
						
							|  |  |  |            For AEAD-based ciphersuites, there is nothing to do here. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (mac_key_len != 0) { | 
					
						
							|  |  |  |             ret = mbedtls_md_hmac_starts(&transform->md_ctx_enc, | 
					
						
							|  |  |  |                                          mac_enc, mac_key_len); | 
					
						
							|  |  |  |             if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |                 goto end; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             } | 
					
						
							|  |  |  |             ret = mbedtls_md_hmac_starts(&transform->md_ctx_dec, | 
					
						
							|  |  |  |                                          mac_dec, mac_key_len); | 
					
						
							|  |  |  |             if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |                 goto end; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("should never happen")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ret = MBEDTLS_ERR_SSL_INTERNAL_ERROR; | 
					
						
							|  |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_SOME_MODES_USE_MAC */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_HW_RECORD_ACCEL)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_ssl_hw_record_init != NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_SSL_DEBUG_MSG(2, ("going for mbedtls_ssl_hw_record_init()")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((ret = mbedtls_ssl_hw_record_init(ssl, key1, key2, keylen, | 
					
						
							|  |  |  |                                               transform->iv_enc, transform->iv_dec, | 
					
						
							|  |  |  |                                               iv_copy_len, | 
					
						
							|  |  |  |                                               mac_enc, mac_dec, | 
					
						
							|  |  |  |                                               mac_key_len)) != 0) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_hw_record_init", ret); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             ret = MBEDTLS_ERR_SSL_HW_ACCEL_FAILED; | 
					
						
							|  |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  |     ((void) mac_dec); | 
					
						
							|  |  |  |     ((void) mac_enc); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_HW_RECORD_ACCEL */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_EXPORT_KEYS)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->f_export_keys != NULL) { | 
					
						
							|  |  |  |         ssl->conf->f_export_keys(ssl->conf->p_export_keys, | 
					
						
							|  |  |  |                                  master, keyblk, | 
					
						
							|  |  |  |                                  mac_key_len, keylen, | 
					
						
							|  |  |  |                                  iv_copy_len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->f_export_keys_ext != NULL) { | 
					
						
							|  |  |  |         ssl->conf->f_export_keys_ext(ssl->conf->p_export_keys, | 
					
						
							|  |  |  |                                      master, keyblk, | 
					
						
							|  |  |  |                                      mac_key_len, keylen, | 
					
						
							|  |  |  |                                      iv_copy_len, | 
					
						
							|  |  |  |                                      randbytes + 32, | 
					
						
							|  |  |  |                                      randbytes, | 
					
						
							|  |  |  |                                      tls_prf_get_type(tls_prf)); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  |     do_mbedtls_cipher_setup = 1; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Only use PSA-based ciphers for TLS-1.2.
 | 
					
						
							|  |  |  |      * That's relevant at least for TLS-1.0, where | 
					
						
							|  |  |  |      * we assume that mbedtls_cipher_crypt() updates | 
					
						
							|  |  |  |      * the structure field for the IV, which the PSA-based | 
					
						
							|  |  |  |      * implementation currently doesn't. */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (minor_ver == MBEDTLS_SSL_MINOR_VERSION_3) { | 
					
						
							|  |  |  |         ret = mbedtls_cipher_setup_psa(&transform->cipher_ctx_enc, | 
					
						
							|  |  |  |                                        cipher_info, transform->taglen); | 
					
						
							|  |  |  |         if (ret != 0 && ret != MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_cipher_setup_psa", ret); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (ret == 0) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_MSG(3, ("Successfully setup PSA-based encryption cipher context")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             psa_fallthrough = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_MSG(1, | 
					
						
							|  |  |  |                                   ( | 
					
						
							|  |  |  |                                       "Failed to setup PSA-based cipher context for record encryption - fall through to default setup.")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             psa_fallthrough = 1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         psa_fallthrough = 1; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  |     psa_fallthrough = 1; | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (psa_fallthrough == 0) { | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  |         do_mbedtls_cipher_setup = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (do_mbedtls_cipher_setup && | 
					
						
							|  |  |  |         (ret = mbedtls_cipher_setup(&transform->cipher_ctx_enc, | 
					
						
							|  |  |  |                                     cipher_info)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_cipher_setup", ret); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  |     do_mbedtls_cipher_setup = 1; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  |     /* Only use PSA-based ciphers for TLS-1.2.
 | 
					
						
							|  |  |  |      * That's relevant at least for TLS-1.0, where | 
					
						
							|  |  |  |      * we assume that mbedtls_cipher_crypt() updates | 
					
						
							|  |  |  |      * the structure field for the IV, which the PSA-based | 
					
						
							|  |  |  |      * implementation currently doesn't. */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (minor_ver == MBEDTLS_SSL_MINOR_VERSION_3) { | 
					
						
							|  |  |  |         ret = mbedtls_cipher_setup_psa(&transform->cipher_ctx_dec, | 
					
						
							|  |  |  |                                        cipher_info, transform->taglen); | 
					
						
							|  |  |  |         if (ret != 0 && ret != MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_cipher_setup_psa", ret); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             goto end; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (ret == 0) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_MSG(3, ("Successfully setup PSA-based decryption cipher context")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             psa_fallthrough = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_MSG(1, | 
					
						
							|  |  |  |                                   ( | 
					
						
							|  |  |  |                                       "Failed to setup PSA-based cipher context for record decryption - fall through to default setup.")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             psa_fallthrough = 1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         psa_fallthrough = 1; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  |     psa_fallthrough = 1; | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (psa_fallthrough == 0) { | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  |         do_mbedtls_cipher_setup = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (do_mbedtls_cipher_setup && | 
					
						
							|  |  |  |         (ret = mbedtls_cipher_setup(&transform->cipher_ctx_dec, | 
					
						
							|  |  |  |                                     cipher_info)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_cipher_setup", ret); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_cipher_setkey(&transform->cipher_ctx_enc, key1, | 
					
						
							|  |  |  |                                      cipher_info->key_bitlen, | 
					
						
							|  |  |  |                                      MBEDTLS_ENCRYPT)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_cipher_setkey", ret); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_cipher_setkey(&transform->cipher_ctx_dec, key2, | 
					
						
							|  |  |  |                                      cipher_info->key_bitlen, | 
					
						
							|  |  |  |                                      MBEDTLS_DECRYPT)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_cipher_setkey", ret); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         goto end; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_CIPHER_MODE_CBC)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (cipher_info->mode == MBEDTLS_MODE_CBC) { | 
					
						
							|  |  |  |         if ((ret = mbedtls_cipher_set_padding_mode(&transform->cipher_ctx_enc, | 
					
						
							|  |  |  |                                                    MBEDTLS_PADDING_NONE)) != 0) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_cipher_set_padding_mode", ret); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((ret = mbedtls_cipher_set_padding_mode(&transform->cipher_ctx_dec, | 
					
						
							|  |  |  |                                                    MBEDTLS_PADDING_NONE)) != 0) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_cipher_set_padding_mode", ret); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_CIPHER_MODE_CBC */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* Initialize Zlib contexts */ | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_ZLIB_SUPPORT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (compression == MBEDTLS_SSL_COMPRESS_DEFLATE) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(3, ("Initializing zlib states")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         memset(&transform->ctx_deflate, 0, sizeof(transform->ctx_deflate)); | 
					
						
							|  |  |  |         memset(&transform->ctx_inflate, 0, sizeof(transform->ctx_inflate)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (deflateInit(&transform->ctx_deflate, | 
					
						
							|  |  |  |                         Z_DEFAULT_COMPRESSION)   != Z_OK || | 
					
						
							|  |  |  |             inflateInit(&transform->ctx_inflate) != Z_OK) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_MSG(1, ("Failed to initialize compression")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             ret = MBEDTLS_ERR_SSL_COMPRESSION_FAILED; | 
					
						
							|  |  |  |             goto end; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_ZLIB_SUPPORT */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | end: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(keyblk, sizeof(keyblk)); | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Set appropriate PRF function and other SSL / TLS 1.0/1.1 / TLS1.2 functions | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Inputs: | 
					
						
							|  |  |  |  * - SSL/TLS minor version | 
					
						
							|  |  |  |  * - hash associated with the ciphersuite (only used by TLS 1.2) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Outputs: | 
					
						
							|  |  |  |  * - the tls_prf, calc_verify and calc_finished members of handshake structure | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_set_handshake_prfs(mbedtls_ssl_handshake_params *handshake, | 
					
						
							|  |  |  |                                   int minor_ver, | 
					
						
							|  |  |  |                                   mbedtls_md_type_t hash) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  | #if !defined(MBEDTLS_SSL_PROTO_TLS1_2) ||       \
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     !(defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_SHA512_NO_SHA384)) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     (void) hash; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (minor_ver == MBEDTLS_SSL_MINOR_VERSION_0) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         handshake->tls_prf = ssl3_prf; | 
					
						
							|  |  |  |         handshake->calc_verify = ssl_calc_verify_ssl; | 
					
						
							|  |  |  |         handshake->calc_finished = ssl_calc_finished_ssl; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1) || defined(MBEDTLS_SSL_PROTO_TLS1_1)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (minor_ver < MBEDTLS_SSL_MINOR_VERSION_3) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         handshake->tls_prf = tls1_prf; | 
					
						
							|  |  |  |         handshake->calc_verify = ssl_calc_verify_tls; | 
					
						
							|  |  |  |         handshake->calc_finished = ssl_calc_finished_tls; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_SHA512_NO_SHA384)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (minor_ver == MBEDTLS_SSL_MINOR_VERSION_3 && | 
					
						
							|  |  |  |         hash == MBEDTLS_MD_SHA384) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         handshake->tls_prf = tls_prf_sha384; | 
					
						
							|  |  |  |         handshake->calc_verify = ssl_calc_verify_tls_sha384; | 
					
						
							|  |  |  |         handshake->calc_finished = ssl_calc_finished_tls_sha384; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA256_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (minor_ver == MBEDTLS_SSL_MINOR_VERSION_3) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         handshake->tls_prf = tls_prf_sha256; | 
					
						
							|  |  |  |         handshake->calc_verify = ssl_calc_verify_tls_sha256; | 
					
						
							|  |  |  |         handshake->calc_finished = ssl_calc_finished_tls_sha256; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
 | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         return MBEDTLS_ERR_SSL_INTERNAL_ERROR; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Compute master secret if needed | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Parameters: | 
					
						
							|  |  |  |  * [in/out] handshake | 
					
						
							|  |  |  |  *          [in] resume, premaster, extended_ms, calc_verify, tls_prf | 
					
						
							|  |  |  |  *               (PSA-PSK) ciphersuite_info, psk_opaque | 
					
						
							|  |  |  |  *          [out] premaster (cleared) | 
					
						
							|  |  |  |  * [out] master | 
					
						
							|  |  |  |  * [in] ssl: optionally used for debugging, EMS and PSA-PSK | 
					
						
							|  |  |  |  *      debug: conf->f_dbg, conf->p_dbg | 
					
						
							|  |  |  |  *      EMS: passed to calc_verify (debug + (SSL3) session_negotiate) | 
					
						
							|  |  |  |  *      PSA-PSA: minor_ver, conf | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_compute_master(mbedtls_ssl_handshake_params *handshake, | 
					
						
							|  |  |  |                               unsigned char *master, | 
					
						
							|  |  |  |                               const mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* cf. RFC 5246, Section 8.1:
 | 
					
						
							|  |  |  |      * "The master secret is always exactly 48 bytes in length." */ | 
					
						
							|  |  |  |     size_t const master_secret_len = 48; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET)
 | 
					
						
							|  |  |  |     unsigned char session_hash[48]; | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_EXTENDED_MASTER_SECRET */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* The label for the KDF used for key expansion.
 | 
					
						
							|  |  |  |      * This is either "master secret" or "extended master secret" | 
					
						
							|  |  |  |      * depending on whether the Extended Master Secret extension | 
					
						
							|  |  |  |      * is used. */ | 
					
						
							|  |  |  |     char const *lbl = "master secret"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* The salt for the KDF used for key expansion.
 | 
					
						
							|  |  |  |      * - If the Extended Master Secret extension is not used, | 
					
						
							|  |  |  |      *   this is ClientHello.Random + ServerHello.Random | 
					
						
							|  |  |  |      *   (see Sect. 8.1 in RFC 5246). | 
					
						
							|  |  |  |      * - If the Extended Master Secret extension is used, | 
					
						
							|  |  |  |      *   this is the transcript of the handshake so far. | 
					
						
							|  |  |  |      *   (see Sect. 4 in RFC 7627). */ | 
					
						
							|  |  |  |     unsigned char const *salt = handshake->randbytes; | 
					
						
							|  |  |  |     size_t salt_len = 64; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_DEBUG_C) &&                    \
 | 
					
						
							|  |  |  |     !defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET) && \ | 
					
						
							|  |  |  |     !(defined(MBEDTLS_USE_PSA_CRYPTO) &&            \ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     defined(MBEDTLS_KEY_EXCHANGE_PSK_ENABLED)) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     ssl = NULL; /* make sure we don't use it except for those cases */ | 
					
						
							|  |  |  |     (void) ssl; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (handshake->resume != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(3, ("no premaster (session resumed)")); | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (handshake->extended_ms == MBEDTLS_SSL_EXTENDED_MS_ENABLED) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         lbl  = "extended master secret"; | 
					
						
							|  |  |  |         salt = session_hash; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         handshake->calc_verify(ssl, session_hash, &salt_len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_SSL_DEBUG_BUF(3, "session hash for extended master secret", | 
					
						
							|  |  |  |                               session_hash, salt_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_EXTENDED_MS_ENABLED */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO) &&          \
 | 
					
						
							|  |  |  |     defined(MBEDTLS_KEY_EXCHANGE_PSK_ENABLED) | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (handshake->ciphersuite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_PSK && | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ssl->minor_ver == MBEDTLS_SSL_MINOR_VERSION_3 && | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ssl_use_opaque_psk(ssl) == 1) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         /* Perform PSK-to-MS expansion in a single step. */ | 
					
						
							|  |  |  |         psa_status_t status; | 
					
						
							|  |  |  |         psa_algorithm_t alg; | 
					
						
							|  |  |  |         psa_key_id_t psk; | 
					
						
							|  |  |  |         psa_key_derivation_operation_t derivation = | 
					
						
							|  |  |  |             PSA_KEY_DERIVATION_OPERATION_INIT; | 
					
						
							|  |  |  |         mbedtls_md_type_t hash_alg = handshake->ciphersuite_info->mac; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_SSL_DEBUG_MSG(2, ("perform PSA-based PSK-to-MS expansion")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         psk = mbedtls_ssl_get_opaque_psk(ssl); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (hash_alg == MBEDTLS_MD_SHA384) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             alg = PSA_ALG_TLS12_PSK_TO_MS(PSA_ALG_SHA_384); | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             alg = PSA_ALG_TLS12_PSK_TO_MS(PSA_ALG_SHA_256); | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         status = setup_psa_key_derivation(&derivation, psk, alg, | 
					
						
							|  |  |  |                                           salt, salt_len, | 
					
						
							|  |  |  |                                           (unsigned char const *) lbl, | 
					
						
							|  |  |  |                                           (size_t) strlen(lbl), | 
					
						
							|  |  |  |                                           master_secret_len); | 
					
						
							|  |  |  |         if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |             psa_key_derivation_abort(&derivation); | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_HW_ACCEL_FAILED; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         status = psa_key_derivation_output_bytes(&derivation, | 
					
						
							|  |  |  |                                                  master, | 
					
						
							|  |  |  |                                                  master_secret_len); | 
					
						
							|  |  |  |         if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |             psa_key_derivation_abort(&derivation); | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_HW_ACCEL_FAILED; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         status = psa_key_derivation_abort(&derivation); | 
					
						
							|  |  |  |         if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_HW_ACCEL_FAILED; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ret = handshake->tls_prf(handshake->premaster, handshake->pmslen, | 
					
						
							|  |  |  |                                  lbl, salt, salt_len, | 
					
						
							|  |  |  |                                  master, | 
					
						
							|  |  |  |                                  master_secret_len); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_RET(1, "prf", ret); | 
					
						
							|  |  |  |             return ret; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_SSL_DEBUG_BUF(3, "premaster secret", | 
					
						
							|  |  |  |                               handshake->premaster, | 
					
						
							|  |  |  |                               handshake->pmslen); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_platform_zeroize(handshake->premaster, | 
					
						
							|  |  |  |                                  sizeof(handshake->premaster)); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_derive_keys(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							|  |  |  |     const mbedtls_ssl_ciphersuite_t * const ciphersuite_info = | 
					
						
							|  |  |  |         ssl->handshake->ciphersuite_info; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> derive keys")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Set PRF, calc_verify and calc_finished function pointers */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = ssl_set_handshake_prfs(ssl->handshake, | 
					
						
							|  |  |  |                                  ssl->minor_ver, | 
					
						
							|  |  |  |                                  ciphersuite_info->mac); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "ssl_set_handshake_prfs", ret); | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Compute master secret if needed */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = ssl_compute_master(ssl->handshake, | 
					
						
							|  |  |  |                              ssl->session_negotiate->master, | 
					
						
							|  |  |  |                              ssl); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "ssl_compute_master", ret); | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Swap the client and server random values:
 | 
					
						
							|  |  |  |      * - MS derivation wanted client+server (RFC 5246 8.1) | 
					
						
							|  |  |  |      * - key derivation wants server+client (RFC 5246 6.3) */ | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         unsigned char tmp[64]; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         memcpy(tmp, ssl->handshake->randbytes, 64); | 
					
						
							|  |  |  |         memcpy(ssl->handshake->randbytes, tmp + 32, 32); | 
					
						
							|  |  |  |         memcpy(ssl->handshake->randbytes + 32, tmp, 32); | 
					
						
							|  |  |  |         mbedtls_platform_zeroize(tmp, sizeof(tmp)); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Populate transform structure */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = ssl_populate_transform(ssl->transform_negotiate, | 
					
						
							|  |  |  |                                  ssl->session_negotiate->ciphersuite, | 
					
						
							|  |  |  |                                  ssl->session_negotiate->master, | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_SOME_MODES_USE_MAC)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                                  ssl->session_negotiate->encrypt_then_mac, | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_ENCRYPT_THEN_MAC */
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                                  ssl->session_negotiate->trunc_hmac, | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_TRUNCATED_HMAC */
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_SOME_MODES_USE_MAC */
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ZLIB_SUPPORT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                                  ssl->session_negotiate->compression, | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |                                  ssl->handshake->tls_prf, | 
					
						
							|  |  |  |                                  ssl->handshake->randbytes, | 
					
						
							|  |  |  |                                  ssl->minor_ver, | 
					
						
							|  |  |  |                                  ssl->conf->endpoint, | 
					
						
							|  |  |  |                                  ssl); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "ssl_populate_transform", ret); | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* We no longer need Server/ClientHello.random values */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(ssl->handshake->randbytes, | 
					
						
							|  |  |  |                              sizeof(ssl->handshake->randbytes)); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Allocate compression buffer */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_ZLIB_SUPPORT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->session_negotiate->compression == MBEDTLS_SSL_COMPRESS_DEFLATE && | 
					
						
							|  |  |  |         ssl->compress_buf == NULL) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(3, ("Allocating compression buffer")); | 
					
						
							|  |  |  |         ssl->compress_buf = mbedtls_calloc(1, MBEDTLS_SSL_COMPRESS_BUFFER_LEN); | 
					
						
							|  |  |  |         if (ssl->compress_buf == NULL) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_MSG(1, ("alloc(%d bytes) failed", | 
					
						
							|  |  |  |                                       MBEDTLS_SSL_COMPRESS_BUFFER_LEN)); | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_ALLOC_FAILED; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("<= derive keys")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void ssl_calc_verify_ssl(const mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                          unsigned char *hash, | 
					
						
							|  |  |  |                          size_t *hlen) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     mbedtls_md5_context md5; | 
					
						
							|  |  |  |     mbedtls_sha1_context sha1; | 
					
						
							|  |  |  |     unsigned char pad_1[48]; | 
					
						
							|  |  |  |     unsigned char pad_2[48]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> calc verify ssl")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_init(&md5); | 
					
						
							|  |  |  |     mbedtls_sha1_init(&sha1); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_clone(&md5, &ssl->handshake->fin_md5); | 
					
						
							|  |  |  |     mbedtls_sha1_clone(&sha1, &ssl->handshake->fin_sha1); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memset(pad_1, 0x36, 48); | 
					
						
							|  |  |  |     memset(pad_2, 0x5C, 48); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_update_ret(&md5, ssl->session_negotiate->master, 48); | 
					
						
							|  |  |  |     mbedtls_md5_update_ret(&md5, pad_1, 48); | 
					
						
							|  |  |  |     mbedtls_md5_finish_ret(&md5, hash); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_starts_ret(&md5); | 
					
						
							|  |  |  |     mbedtls_md5_update_ret(&md5, ssl->session_negotiate->master, 48); | 
					
						
							|  |  |  |     mbedtls_md5_update_ret(&md5, pad_2, 48); | 
					
						
							|  |  |  |     mbedtls_md5_update_ret(&md5, hash,  16); | 
					
						
							|  |  |  |     mbedtls_md5_finish_ret(&md5, hash); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha1_update_ret(&sha1, ssl->session_negotiate->master, 48); | 
					
						
							|  |  |  |     mbedtls_sha1_update_ret(&sha1, pad_1, 40); | 
					
						
							|  |  |  |     mbedtls_sha1_finish_ret(&sha1, hash + 16); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha1_starts_ret(&sha1); | 
					
						
							|  |  |  |     mbedtls_sha1_update_ret(&sha1, ssl->session_negotiate->master, 48); | 
					
						
							|  |  |  |     mbedtls_sha1_update_ret(&sha1, pad_2, 40); | 
					
						
							|  |  |  |     mbedtls_sha1_update_ret(&sha1, hash + 16, 20); | 
					
						
							|  |  |  |     mbedtls_sha1_finish_ret(&sha1, hash + 16); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     *hlen = 36; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_BUF(3, "calculated verify result", hash, *hlen); | 
					
						
							|  |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("<= calc verify")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_free(&md5); | 
					
						
							|  |  |  |     mbedtls_sha1_free(&sha1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_SSL3 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1) || defined(MBEDTLS_SSL_PROTO_TLS1_1)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void ssl_calc_verify_tls(const mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                          unsigned char *hash, | 
					
						
							|  |  |  |                          size_t *hlen) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     mbedtls_md5_context md5; | 
					
						
							|  |  |  |     mbedtls_sha1_context sha1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> calc verify tls")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_init(&md5); | 
					
						
							|  |  |  |     mbedtls_sha1_init(&sha1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_clone(&md5, &ssl->handshake->fin_md5); | 
					
						
							|  |  |  |     mbedtls_sha1_clone(&sha1, &ssl->handshake->fin_sha1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_finish_ret(&md5,  hash); | 
					
						
							|  |  |  |     mbedtls_sha1_finish_ret(&sha1, hash + 16); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     *hlen = 36; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_BUF(3, "calculated verify result", hash, *hlen); | 
					
						
							|  |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("<= calc verify")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_free(&md5); | 
					
						
							|  |  |  |     mbedtls_sha1_free(&sha1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1 || MBEDTLS_SSL_PROTO_TLS1_1 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA256_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void ssl_calc_verify_tls_sha256(const mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                 unsigned char *hash, | 
					
						
							|  |  |  |                                 size_t *hlen) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  |     size_t hash_size; | 
					
						
							|  |  |  |     psa_status_t status; | 
					
						
							|  |  |  |     psa_hash_operation_t sha256_psa = psa_hash_operation_init(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> PSA calc verify sha256")); | 
					
						
							|  |  |  |     status = psa_hash_clone(&ssl->handshake->fin_sha256_psa, &sha256_psa); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(2, ("PSA hash clone failed")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     status = psa_hash_finish(&sha256_psa, hash, 32, &hash_size); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(2, ("PSA hash finish failed")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     *hlen = 32; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_BUF(3, "PSA calculated verify result", hash, *hlen); | 
					
						
							|  |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("<= PSA calc verify")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     mbedtls_sha256_context sha256; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha256_init(&sha256); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> calc verify sha256")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha256_clone(&sha256, &ssl->handshake->fin_sha256); | 
					
						
							|  |  |  |     mbedtls_sha256_finish_ret(&sha256, hash); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     *hlen = 32; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_BUF(3, "calculated verify result", hash, *hlen); | 
					
						
							|  |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("<= calc verify")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha256_free(&sha256); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     return; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SHA256_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_SHA512_NO_SHA384)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void ssl_calc_verify_tls_sha384(const mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                 unsigned char *hash, | 
					
						
							|  |  |  |                                 size_t *hlen) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  |     size_t hash_size; | 
					
						
							|  |  |  |     psa_status_t status; | 
					
						
							|  |  |  |     psa_hash_operation_t sha384_psa = psa_hash_operation_init(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> PSA calc verify sha384")); | 
					
						
							|  |  |  |     status = psa_hash_clone(&ssl->handshake->fin_sha384_psa, &sha384_psa); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(2, ("PSA hash clone failed")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     status = psa_hash_finish(&sha384_psa, hash, 48, &hash_size); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(2, ("PSA hash finish failed")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     *hlen = 48; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_BUF(3, "PSA calculated verify result", hash, *hlen); | 
					
						
							|  |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("<= PSA calc verify")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     mbedtls_sha512_context sha512; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha512_init(&sha512); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> calc verify sha384")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha512_clone(&sha512, &ssl->handshake->fin_sha512); | 
					
						
							|  |  |  |     mbedtls_sha512_finish_ret(&sha512, hash); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     *hlen = 48; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_BUF(3, "calculated verify result", hash, *hlen); | 
					
						
							|  |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("<= calc verify")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha512_free(&sha512); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     return; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SHA512_C && !MBEDTLS_SHA512_NO_SHA384 */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_psk_derive_premaster(mbedtls_ssl_context *ssl, mbedtls_key_exchange_type_t key_ex) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     unsigned char *p = ssl->handshake->premaster; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     unsigned char *end = p + sizeof(ssl->handshake->premaster); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     const unsigned char *psk = NULL; | 
					
						
							|  |  |  |     size_t psk_len = 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_ssl_get_psk(ssl, &psk, &psk_len) | 
					
						
							|  |  |  |         == MBEDTLS_ERR_SSL_PRIVATE_KEY_REQUIRED) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * This should never happen because the existence of a PSK is always | 
					
						
							|  |  |  |          * checked before calling this function | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("should never happen")); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_INTERNAL_ERROR; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * PMS = struct { | 
					
						
							|  |  |  |      *     opaque other_secret<0..2^16-1>; | 
					
						
							|  |  |  |      *     opaque psk<0..2^16-1>; | 
					
						
							|  |  |  |      * }; | 
					
						
							|  |  |  |      * with "other_secret" depending on the particular key exchange | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_KEY_EXCHANGE_PSK_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (key_ex == MBEDTLS_KEY_EXCHANGE_PSK) { | 
					
						
							|  |  |  |         if (end - p < 2) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_PUT_UINT16_BE(psk_len, p, 0); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += 2; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (end < p || (size_t) (end - p) < psk_len) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         memset(p, 0, psk_len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         p += psk_len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_KEY_EXCHANGE_PSK_ENABLED */
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (key_ex == MBEDTLS_KEY_EXCHANGE_RSA_PSK) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * other_secret already set by the ClientKeyExchange message, | 
					
						
							|  |  |  |          * and is 48 bytes long | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (end - p < 2) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         *p++ = 0; | 
					
						
							|  |  |  |         *p++ = 48; | 
					
						
							|  |  |  |         p += 48; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED */
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (key_ex == MBEDTLS_KEY_EXCHANGE_DHE_PSK) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         size_t len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Write length only when we know the actual value */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((ret = mbedtls_dhm_calc_secret(&ssl->handshake->dhm_ctx, | 
					
						
							|  |  |  |                                            p + 2, end - (p + 2), &len, | 
					
						
							|  |  |  |                                            ssl->conf->f_rng, ssl->conf->p_rng)) != 0) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_dhm_calc_secret", ret); | 
					
						
							|  |  |  |             return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_PUT_UINT16_BE(len, p, 0); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += 2 + len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_SSL_DEBUG_MPI(3, "DHM: K ", &ssl->handshake->dhm_ctx.K); | 
					
						
							|  |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED */
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (key_ex == MBEDTLS_KEY_EXCHANGE_ECDHE_PSK) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         size_t zlen; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((ret = mbedtls_ecdh_calc_secret(&ssl->handshake->ecdh_ctx, &zlen, | 
					
						
							|  |  |  |                                             p + 2, end - (p + 2), | 
					
						
							|  |  |  |                                             ssl->conf->f_rng, ssl->conf->p_rng)) != 0) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ecdh_calc_secret", ret); | 
					
						
							|  |  |  |             return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_PUT_UINT16_BE(zlen, p, 0); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += 2 + zlen; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_SSL_DEBUG_ECDH(3, &ssl->handshake->ecdh_ctx, | 
					
						
							|  |  |  |                                MBEDTLS_DEBUG_ECDH_Z); | 
					
						
							|  |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED */
 | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("should never happen")); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_INTERNAL_ERROR; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* opaque psk<0..2^16-1>; */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (end - p < 2) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_PUT_UINT16_BE(psk_len, p, 0); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     p += 2; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (end < p || (size_t) (end - p) < psk_len) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(p, psk, psk_len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     p += psk_len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ssl->handshake->pmslen = p - ssl->handshake->premaster; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_SRV_C) && defined(MBEDTLS_SSL_RENEGOTIATION)
 | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_write_hello_request(mbedtls_ssl_context *ssl); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_resend_hello_request(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     /* If renegotiation is not enforced, retransmit until we would reach max
 | 
					
						
							|  |  |  |      * timeout if we were using the usual handshake doubling scheme */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->renego_max_records < 0) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         uint32_t ratio = ssl->conf->hs_timeout_max / ssl->conf->hs_timeout_min + 1; | 
					
						
							|  |  |  |         unsigned char doublings = 1; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         while (ratio != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             ++doublings; | 
					
						
							|  |  |  |             ratio >>= 1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (++ssl->renego_records_seen > doublings) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_MSG(2, ("no longer retransmitting hello request")); | 
					
						
							|  |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ssl_write_hello_request(ssl); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_SRV_C && MBEDTLS_SSL_RENEGOTIATION */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ssl_clear_peer_cert(mbedtls_ssl_session *session) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (session->peer_cert != NULL) { | 
					
						
							|  |  |  |         mbedtls_x509_crt_free(session->peer_cert); | 
					
						
							|  |  |  |         mbedtls_free(session->peer_cert); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         session->peer_cert = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #else /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (session->peer_cert_digest != NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         /* Zeroization is not necessary. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_free(session->peer_cert_digest); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         session->peer_cert_digest      = NULL; | 
					
						
							|  |  |  |         session->peer_cert_digest_type = MBEDTLS_MD_NONE; | 
					
						
							|  |  |  |         session->peer_cert_digest_len  = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif /* !MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_X509_CRT_PARSE_C */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |  * Handshake functions | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if !defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
 | 
					
						
							|  |  |  | /* No certificate support -> dummy functions */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_write_certificate(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     const mbedtls_ssl_ciphersuite_t *ciphersuite_info = | 
					
						
							|  |  |  |         ssl->handshake->ciphersuite_info; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> write certificate")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (!mbedtls_ssl_ciphersuite_uses_srv_cert(ciphersuite_info)) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(2, ("<= skip write certificate")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ssl->state++; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(1, ("should never happen")); | 
					
						
							|  |  |  |     return MBEDTLS_ERR_SSL_INTERNAL_ERROR; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_parse_certificate(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     const mbedtls_ssl_ciphersuite_t *ciphersuite_info = | 
					
						
							|  |  |  |         ssl->handshake->ciphersuite_info; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> parse certificate")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (!mbedtls_ssl_ciphersuite_uses_srv_cert(ciphersuite_info)) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(2, ("<= skip parse certificate")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ssl->state++; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(1, ("should never happen")); | 
					
						
							|  |  |  |     return MBEDTLS_ERR_SSL_INTERNAL_ERROR; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
 | 
					
						
							|  |  |  | /* Some certificate support -> implement write and parse */ | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_write_certificate(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE; | 
					
						
							|  |  |  |     size_t i, n; | 
					
						
							|  |  |  |     const mbedtls_x509_crt *crt; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     const mbedtls_ssl_ciphersuite_t *ciphersuite_info = | 
					
						
							|  |  |  |         ssl->handshake->ciphersuite_info; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> write certificate")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (!mbedtls_ssl_ciphersuite_uses_srv_cert(ciphersuite_info)) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(2, ("<= skip write certificate")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ssl->state++; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->endpoint == MBEDTLS_SSL_IS_CLIENT) { | 
					
						
							|  |  |  |         if (ssl->client_auth == 0) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_MSG(2, ("<= skip write certificate")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             ssl->state++; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3)
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * If using SSLv3 and got no cert, send an Alert message | 
					
						
							|  |  |  |          * (otherwise an empty Certificate message will be sent). | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (mbedtls_ssl_own_cert(ssl)  == NULL && | 
					
						
							|  |  |  |             ssl->minor_ver == MBEDTLS_SSL_MINOR_VERSION_0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             ssl->out_msglen  = 2; | 
					
						
							|  |  |  |             ssl->out_msgtype = MBEDTLS_SSL_MSG_ALERT; | 
					
						
							|  |  |  |             ssl->out_msg[0]  = MBEDTLS_SSL_ALERT_LEVEL_WARNING; | 
					
						
							|  |  |  |             ssl->out_msg[1]  = MBEDTLS_SSL_ALERT_MSG_NO_CERT; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             MBEDTLS_SSL_DEBUG_MSG(2, ("got no certificate to send")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             goto write_msg; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_SSL3 */
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_CLI_C */
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->endpoint == MBEDTLS_SSL_IS_SERVER) { | 
					
						
							|  |  |  |         if (mbedtls_ssl_own_cert(ssl) == NULL) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_MSG(1, ("got no certificate to send")); | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_CERTIFICATE_REQUIRED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_CRT(3, "own certificate", mbedtls_ssl_own_cert(ssl)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      *     0  .  0    handshake type | 
					
						
							|  |  |  |      *     1  .  3    handshake length | 
					
						
							|  |  |  |      *     4  .  6    length of all certs | 
					
						
							|  |  |  |      *     7  .  9    length of cert. 1 | 
					
						
							|  |  |  |      *    10  . n-1   peer certificate | 
					
						
							|  |  |  |      *     n  . n+2   length of cert. 2 | 
					
						
							|  |  |  |      *    n+3 . ...   upper level cert, etc. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     i = 7; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     crt = mbedtls_ssl_own_cert(ssl); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     while (crt != NULL) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         n = crt->raw.len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (n > MBEDTLS_SSL_OUT_CONTENT_LEN - 3 - i) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_MSG(1, ("certificate too large, %" MBEDTLS_PRINTF_SIZET | 
					
						
							|  |  |  |                                       " > %" MBEDTLS_PRINTF_SIZET, | 
					
						
							|  |  |  |                                       i + 3 + n, (size_t) MBEDTLS_SSL_OUT_CONTENT_LEN)); | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_CERTIFICATE_TOO_LARGE; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ssl->out_msg[i] = MBEDTLS_BYTE_2(n); | 
					
						
							|  |  |  |         ssl->out_msg[i + 1] = MBEDTLS_BYTE_1(n); | 
					
						
							|  |  |  |         ssl->out_msg[i + 2] = MBEDTLS_BYTE_0(n); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         i += 3; memcpy(ssl->out_msg + i, crt->raw.p, n); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         i += n; crt = crt->next; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ssl->out_msg[4]  = MBEDTLS_BYTE_2(i - 7); | 
					
						
							|  |  |  |     ssl->out_msg[5]  = MBEDTLS_BYTE_1(i - 7); | 
					
						
							|  |  |  |     ssl->out_msg[6]  = MBEDTLS_BYTE_0(i - 7); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ssl->out_msglen  = i; | 
					
						
							|  |  |  |     ssl->out_msgtype = MBEDTLS_SSL_MSG_HANDSHAKE; | 
					
						
							|  |  |  |     ssl->out_msg[0]  = MBEDTLS_SSL_HS_CERTIFICATE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3) && defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							|  |  |  | write_msg: | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ssl->state++; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_ssl_write_handshake_msg(ssl)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_write_handshake_msg", ret); | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("<= write certificate")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_RENEGOTIATION) && defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
 | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_check_peer_crt_unchanged(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                         unsigned char *crt_buf, | 
					
						
							|  |  |  |                                         size_t crt_buf_len) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     mbedtls_x509_crt const * const peer_crt = ssl->session->peer_cert; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (peer_crt == NULL) { | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (peer_crt->raw.len != crt_buf_len) { | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return memcmp(peer_crt->raw.p, crt_buf, peer_crt->raw.len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #else /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
 | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_check_peer_crt_unchanged(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                         unsigned char *crt_buf, | 
					
						
							|  |  |  |                                         size_t crt_buf_len) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							|  |  |  |     unsigned char const * const peer_cert_digest = | 
					
						
							|  |  |  |         ssl->session->peer_cert_digest; | 
					
						
							|  |  |  |     mbedtls_md_type_t const peer_cert_digest_type = | 
					
						
							|  |  |  |         ssl->session->peer_cert_digest_type; | 
					
						
							|  |  |  |     mbedtls_md_info_t const * const digest_info = | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_md_info_from_type(peer_cert_digest_type); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     unsigned char tmp_digest[MBEDTLS_SSL_PEER_CERT_DIGEST_MAX_LEN]; | 
					
						
							|  |  |  |     size_t digest_len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (peer_cert_digest == NULL || digest_info == NULL) { | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     digest_len = mbedtls_md_get_size(digest_info); | 
					
						
							|  |  |  |     if (digest_len > MBEDTLS_SSL_PEER_CERT_DIGEST_MAX_LEN) { | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = mbedtls_md(digest_info, crt_buf, crt_buf_len, tmp_digest); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return memcmp(tmp_digest, peer_cert_digest, digest_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_RENEGOTIATION && MBEDTLS_SSL_CLI_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Once the certificate message is read, parse it into a cert chain and | 
					
						
							|  |  |  |  * perform basic checks, but leave actual verification to the caller | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_parse_certificate_chain(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                        mbedtls_x509_crt *chain) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_RENEGOTIATION) && defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     int crt_cnt = 0; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     size_t i, n; | 
					
						
							|  |  |  |     uint8_t alert; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->in_msgtype != MBEDTLS_SSL_MSG_HANDSHAKE) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("bad certificate message")); | 
					
						
							|  |  |  |         mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL, | 
					
						
							|  |  |  |                                        MBEDTLS_SSL_ALERT_MSG_UNEXPECTED_MESSAGE); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_UNEXPECTED_MESSAGE; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->in_msg[0] != MBEDTLS_SSL_HS_CERTIFICATE || | 
					
						
							|  |  |  |         ssl->in_hslen < mbedtls_ssl_hs_hdr_len(ssl) + 3 + 3) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("bad certificate message")); | 
					
						
							|  |  |  |         mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL, | 
					
						
							|  |  |  |                                        MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     i = mbedtls_ssl_hs_hdr_len(ssl); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Same message structure as in mbedtls_ssl_write_certificate() | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     n = (ssl->in_msg[i+1] << 8) | ssl->in_msg[i+2]; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->in_msg[i] != 0 || | 
					
						
							|  |  |  |         ssl->in_hslen != n + 3 + mbedtls_ssl_hs_hdr_len(ssl)) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("bad certificate message")); | 
					
						
							|  |  |  |         mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL, | 
					
						
							|  |  |  |                                        MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* Make &ssl->in_msg[i] point to the beginning of the CRT chain. */ | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     i += 3; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* Iterate through and parse the CRTs in the provided chain. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     while (i < ssl->in_hslen) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         /* Check that there's room for the next CRT's length fields. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (i + 3 > ssl->in_hslen) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_MSG(1, ("bad certificate message")); | 
					
						
							|  |  |  |             mbedtls_ssl_send_alert_message(ssl, | 
					
						
							|  |  |  |                                            MBEDTLS_SSL_ALERT_LEVEL_FATAL, | 
					
						
							|  |  |  |                                            MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR); | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE; | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         /* In theory, the CRT can be up to 2**24 Bytes, but we don't support
 | 
					
						
							|  |  |  |          * anything beyond 2**16 ~ 64K. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (ssl->in_msg[i] != 0) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_MSG(1, ("bad certificate message")); | 
					
						
							|  |  |  |             mbedtls_ssl_send_alert_message(ssl, | 
					
						
							|  |  |  |                                            MBEDTLS_SSL_ALERT_LEVEL_FATAL, | 
					
						
							|  |  |  |                                            MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR); | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         /* Read length of the next CRT in the chain. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         n = ((unsigned int) ssl->in_msg[i + 1] << 8) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             | (unsigned int) ssl->in_msg[i + 2]; | 
					
						
							|  |  |  |         i += 3; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (n < 128 || i + n > ssl->in_hslen) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_MSG(1, ("bad certificate message")); | 
					
						
							|  |  |  |             mbedtls_ssl_send_alert_message(ssl, | 
					
						
							|  |  |  |                                            MBEDTLS_SSL_ALERT_LEVEL_FATAL, | 
					
						
							|  |  |  |                                            MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR); | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         /* Check if we're handling the first CRT in the chain. */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_RENEGOTIATION) && defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (crt_cnt++ == 0 && | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             ssl->conf->endpoint == MBEDTLS_SSL_IS_CLIENT && | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             ssl->renego_status == MBEDTLS_SSL_RENEGOTIATION_IN_PROGRESS) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             /* During client-side renegotiation, check that the server's
 | 
					
						
							|  |  |  |              * end-CRTs hasn't changed compared to the initial handshake, | 
					
						
							|  |  |  |              * mitigating the triple handshake attack. On success, reuse | 
					
						
							|  |  |  |              * the original end-CRT instead of parsing it again. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             MBEDTLS_SSL_DEBUG_MSG(3, ("Check that peer CRT hasn't changed during renegotiation")); | 
					
						
							|  |  |  |             if (ssl_check_peer_crt_unchanged(ssl, | 
					
						
							|  |  |  |                                              &ssl->in_msg[i], | 
					
						
							|  |  |  |                                              n) != 0) { | 
					
						
							|  |  |  |                 MBEDTLS_SSL_DEBUG_MSG(1, ("new server cert during renegotiation")); | 
					
						
							|  |  |  |                 mbedtls_ssl_send_alert_message(ssl, | 
					
						
							|  |  |  |                                                MBEDTLS_SSL_ALERT_LEVEL_FATAL, | 
					
						
							|  |  |  |                                                MBEDTLS_SSL_ALERT_MSG_ACCESS_DENIED); | 
					
						
							|  |  |  |                 return MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* Now we can safely free the original chain. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             ssl_clear_peer_cert(ssl->session); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_RENEGOTIATION && MBEDTLS_SSL_CLI_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Parse the next certificate in the chain. */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ret = mbedtls_x509_crt_parse_der(chain, ssl->in_msg + i, n); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  |         /* If we don't need to store the CRT chain permanently, parse
 | 
					
						
							|  |  |  |          * it in-place from the input buffer instead of making a copy. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ret = mbedtls_x509_crt_parse_der_nocopy(chain, ssl->in_msg + i, n); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         switch (ret) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             case 0: /*ok*/ | 
					
						
							|  |  |  |             case MBEDTLS_ERR_X509_UNKNOWN_SIG_ALG + MBEDTLS_ERR_OID_NOT_FOUND: | 
					
						
							|  |  |  |                 /* Ignore certificate with an unknown algorithm: maybe a
 | 
					
						
							|  |  |  |                    prior certificate was already trusted. */ | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             case MBEDTLS_ERR_X509_ALLOC_FAILED: | 
					
						
							|  |  |  |                 alert = MBEDTLS_SSL_ALERT_MSG_INTERNAL_ERROR; | 
					
						
							|  |  |  |                 goto crt_parse_der_failed; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             case MBEDTLS_ERR_X509_UNKNOWN_VERSION: | 
					
						
							|  |  |  |                 alert = MBEDTLS_SSL_ALERT_MSG_UNSUPPORTED_CERT; | 
					
						
							|  |  |  |                 goto crt_parse_der_failed; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             default: | 
					
						
							|  |  |  |                 alert = MBEDTLS_SSL_ALERT_MSG_BAD_CERT; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | crt_parse_der_failed: | 
					
						
							|  |  |  |                 mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL, alert); | 
					
						
							|  |  |  |                 MBEDTLS_SSL_DEBUG_RET(1, " mbedtls_x509_crt_parse_der", ret); | 
					
						
							|  |  |  |                 return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         i += n; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_CRT(3, "peer certificate", chain); | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_srv_check_client_no_crt_notification(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->endpoint == MBEDTLS_SSL_IS_CLIENT) { | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3)
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |      * Check if the client sent an empty certificate | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->minor_ver == MBEDTLS_SSL_MINOR_VERSION_0) { | 
					
						
							|  |  |  |         if (ssl->in_msglen  == 2                        && | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             ssl->in_msgtype == MBEDTLS_SSL_MSG_ALERT            && | 
					
						
							|  |  |  |             ssl->in_msg[0]  == MBEDTLS_SSL_ALERT_LEVEL_WARNING  && | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             ssl->in_msg[1]  == MBEDTLS_SSL_ALERT_MSG_NO_CERT) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_MSG(1, ("SSLv3 client has no certificate")); | 
					
						
							|  |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_PROTO_SSL3 */
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1) || defined(MBEDTLS_SSL_PROTO_TLS1_1) || \
 | 
					
						
							|  |  |  |     defined(MBEDTLS_SSL_PROTO_TLS1_2) | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->in_hslen   == 3 + mbedtls_ssl_hs_hdr_len(ssl) && | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ssl->in_msgtype == MBEDTLS_SSL_MSG_HANDSHAKE    && | 
					
						
							|  |  |  |         ssl->in_msg[0]  == MBEDTLS_SSL_HS_CERTIFICATE   && | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         memcmp(ssl->in_msg + mbedtls_ssl_hs_hdr_len(ssl), "\0\0\0", 3) == 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("TLSv1 client has no certificate")); | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return -1; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1 || MBEDTLS_SSL_PROTO_TLS1_1 || \
 | 
					
						
							|  |  |  |           MBEDTLS_SSL_PROTO_TLS1_2 */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_SRV_C */
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | /* Check if a certificate message is expected.
 | 
					
						
							|  |  |  |  * Return either | 
					
						
							|  |  |  |  * - SSL_CERTIFICATE_EXPECTED, or | 
					
						
							|  |  |  |  * - SSL_CERTIFICATE_SKIP | 
					
						
							|  |  |  |  * indicating whether a Certificate message is expected or not. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define SSL_CERTIFICATE_EXPECTED 0
 | 
					
						
							|  |  |  | #define SSL_CERTIFICATE_SKIP     1
 | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_parse_certificate_coordinate(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                             int authmode) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     const mbedtls_ssl_ciphersuite_t *ciphersuite_info = | 
					
						
							|  |  |  |         ssl->handshake->ciphersuite_info; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (!mbedtls_ssl_ciphersuite_uses_srv_cert(ciphersuite_info)) { | 
					
						
							|  |  |  |         return SSL_CERTIFICATE_SKIP; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->endpoint == MBEDTLS_SSL_IS_SERVER) { | 
					
						
							|  |  |  |         if (ciphersuite_info->key_exchange == MBEDTLS_KEY_EXCHANGE_RSA_PSK) { | 
					
						
							|  |  |  |             return SSL_CERTIFICATE_SKIP; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (authmode == MBEDTLS_SSL_VERIFY_NONE) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             ssl->session_negotiate->verify_result = | 
					
						
							|  |  |  |                 MBEDTLS_X509_BADCERT_SKIP_VERIFY; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return SSL_CERTIFICATE_SKIP; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  |     ((void) authmode); | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_SRV_C */
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return SSL_CERTIFICATE_EXPECTED; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_parse_certificate_verify(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                         int authmode, | 
					
						
							|  |  |  |                                         mbedtls_x509_crt *chain, | 
					
						
							|  |  |  |                                         void *rs_ctx) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  |     const mbedtls_ssl_ciphersuite_t *ciphersuite_info = | 
					
						
							|  |  |  |         ssl->handshake->ciphersuite_info; | 
					
						
							|  |  |  |     int have_ca_chain = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     int (*f_vrfy)(void *, mbedtls_x509_crt *, int, uint32_t *); | 
					
						
							|  |  |  |     void *p_vrfy; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (authmode == MBEDTLS_SSL_VERIFY_NONE) { | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->f_vrfy != NULL) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(3, ("Use context-specific verification callback")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         f_vrfy = ssl->f_vrfy; | 
					
						
							|  |  |  |         p_vrfy = ssl->p_vrfy; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(3, ("Use configuration-specific verification callback")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         f_vrfy = ssl->conf->f_vrfy; | 
					
						
							|  |  |  |         p_vrfy = ssl->conf->p_vrfy; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Main check: verify certificate | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->f_ca_cb != NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ((void) rs_ctx); | 
					
						
							|  |  |  |         have_ca_chain = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_SSL_DEBUG_MSG(3, ("use CA callback for X.509 CRT verification")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ret = mbedtls_x509_crt_verify_with_ca_cb( | 
					
						
							|  |  |  |             chain, | 
					
						
							|  |  |  |             ssl->conf->f_ca_cb, | 
					
						
							|  |  |  |             ssl->conf->p_ca_cb, | 
					
						
							|  |  |  |             ssl->conf->cert_profile, | 
					
						
							|  |  |  |             ssl->hostname, | 
					
						
							|  |  |  |             &ssl->session_negotiate->verify_result, | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             f_vrfy, p_vrfy); | 
					
						
							|  |  |  |     } else | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         mbedtls_x509_crt *ca_chain; | 
					
						
							|  |  |  |         mbedtls_x509_crl *ca_crl; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (ssl->handshake->sni_ca_chain != NULL) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             ca_chain = ssl->handshake->sni_ca_chain; | 
					
						
							|  |  |  |             ca_crl   = ssl->handshake->sni_ca_crl; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             ca_chain = ssl->conf->ca_chain; | 
					
						
							|  |  |  |             ca_crl   = ssl->conf->ca_crl; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (ca_chain != NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             have_ca_chain = 1; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         ret = mbedtls_x509_crt_verify_restartable( | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             chain, | 
					
						
							|  |  |  |             ca_chain, ca_crl, | 
					
						
							|  |  |  |             ssl->conf->cert_profile, | 
					
						
							|  |  |  |             ssl->hostname, | 
					
						
							|  |  |  |             &ssl->session_negotiate->verify_result, | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             f_vrfy, p_vrfy, rs_ctx); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "x509_verify_cert", ret); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_ECP_RESTARTABLE_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ret == MBEDTLS_ERR_ECP_IN_PROGRESS) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Secondary checks: always done, but change 'ret' only if it was 0 | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECP_C)
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         const mbedtls_pk_context *pk = &chain->pk; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  |         /* If certificate uses an EC key, make sure the curve is OK.
 | 
					
						
							|  |  |  |          * This is a public key, so it can't be opaque, so can_do() is a good | 
					
						
							|  |  |  |          * enough check to ensure pk_ec() is safe to use here. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (mbedtls_pk_can_do(pk, MBEDTLS_PK_ECKEY) && | 
					
						
							|  |  |  |             mbedtls_ssl_check_curve(ssl, mbedtls_pk_ec(*pk)->grp.id) != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             ssl->session_negotiate->verify_result |= MBEDTLS_X509_BADCERT_BAD_KEY; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             MBEDTLS_SSL_DEBUG_MSG(1, ("bad certificate (EC key curve)")); | 
					
						
							|  |  |  |             if (ret == 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |                 ret = MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_ECP_C */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_ssl_check_cert_usage(chain, | 
					
						
							|  |  |  |                                      ciphersuite_info, | 
					
						
							|  |  |  |                                      !ssl->conf->endpoint, | 
					
						
							|  |  |  |                                      &ssl->session_negotiate->verify_result) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("bad certificate (usage extensions)")); | 
					
						
							|  |  |  |         if (ret == 0) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             ret = MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* mbedtls_x509_crt_verify_with_profile is supposed to report a
 | 
					
						
							|  |  |  |      * verification failure through MBEDTLS_ERR_X509_CERT_VERIFY_FAILED, | 
					
						
							|  |  |  |      * with details encoded in the verification flags. All other kinds | 
					
						
							|  |  |  |      * of error codes, including those from the user provided f_vrfy | 
					
						
							|  |  |  |      * functions, are treated as fatal and lead to a failure of | 
					
						
							|  |  |  |      * ssl_parse_certificate even if verification was optional. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (authmode == MBEDTLS_SSL_VERIFY_OPTIONAL && | 
					
						
							|  |  |  |         (ret == MBEDTLS_ERR_X509_CERT_VERIFY_FAILED || | 
					
						
							|  |  |  |          ret == MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE)) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ret = 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (have_ca_chain == 0 && authmode == MBEDTLS_SSL_VERIFY_REQUIRED) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("got no CA chain")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ret = MBEDTLS_ERR_SSL_CA_CHAIN_REQUIRED; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         uint8_t alert; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* The certificate may have been rejected for several reasons.
 | 
					
						
							|  |  |  |            Pick one and send the corresponding alert. Which alert to send | 
					
						
							|  |  |  |            may be a subject of debate in some cases. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (ssl->session_negotiate->verify_result & MBEDTLS_X509_BADCERT_OTHER) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             alert = MBEDTLS_SSL_ALERT_MSG_ACCESS_DENIED; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } else if (ssl->session_negotiate->verify_result & MBEDTLS_X509_BADCERT_CN_MISMATCH) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             alert = MBEDTLS_SSL_ALERT_MSG_BAD_CERT; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } else if (ssl->session_negotiate->verify_result & MBEDTLS_X509_BADCERT_KEY_USAGE) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             alert = MBEDTLS_SSL_ALERT_MSG_UNSUPPORTED_CERT; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } else if (ssl->session_negotiate->verify_result & MBEDTLS_X509_BADCERT_EXT_KEY_USAGE) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             alert = MBEDTLS_SSL_ALERT_MSG_UNSUPPORTED_CERT; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } else if (ssl->session_negotiate->verify_result & MBEDTLS_X509_BADCERT_NS_CERT_TYPE) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             alert = MBEDTLS_SSL_ALERT_MSG_UNSUPPORTED_CERT; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } else if (ssl->session_negotiate->verify_result & MBEDTLS_X509_BADCERT_BAD_PK) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             alert = MBEDTLS_SSL_ALERT_MSG_UNSUPPORTED_CERT; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } else if (ssl->session_negotiate->verify_result & MBEDTLS_X509_BADCERT_BAD_KEY) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             alert = MBEDTLS_SSL_ALERT_MSG_UNSUPPORTED_CERT; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } else if (ssl->session_negotiate->verify_result & MBEDTLS_X509_BADCERT_EXPIRED) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             alert = MBEDTLS_SSL_ALERT_MSG_CERT_EXPIRED; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } else if (ssl->session_negotiate->verify_result & MBEDTLS_X509_BADCERT_REVOKED) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             alert = MBEDTLS_SSL_ALERT_MSG_CERT_REVOKED; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } else if (ssl->session_negotiate->verify_result & MBEDTLS_X509_BADCERT_NOT_TRUSTED) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             alert = MBEDTLS_SSL_ALERT_MSG_UNKNOWN_CA; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             alert = MBEDTLS_SSL_ALERT_MSG_CERT_UNKNOWN; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |         mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL, | 
					
						
							|  |  |  |                                        alert); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_DEBUG_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->session_negotiate->verify_result != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(3, ("! Certificate verification flags %08x", | 
					
						
							|  |  |  |                                   (unsigned int) ssl->session_negotiate->verify_result)); | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(3, ("Certificate verification flags clear")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_DEBUG_C */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if !defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
 | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_remember_peer_crt_digest(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                         unsigned char *start, size_t len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							|  |  |  |     /* Remember digest of the peer's end-CRT. */ | 
					
						
							|  |  |  |     ssl->session_negotiate->peer_cert_digest = | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_calloc(1, MBEDTLS_SSL_PEER_CERT_DIGEST_DFL_LEN); | 
					
						
							|  |  |  |     if (ssl->session_negotiate->peer_cert_digest == NULL) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("alloc(%d bytes) failed", | 
					
						
							|  |  |  |                                   MBEDTLS_SSL_PEER_CERT_DIGEST_DFL_LEN)); | 
					
						
							|  |  |  |         mbedtls_ssl_send_alert_message(ssl, | 
					
						
							|  |  |  |                                        MBEDTLS_SSL_ALERT_LEVEL_FATAL, | 
					
						
							|  |  |  |                                        MBEDTLS_SSL_ALERT_MSG_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         return MBEDTLS_ERR_SSL_ALLOC_FAILED; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = mbedtls_md(mbedtls_md_info_from_type( | 
					
						
							|  |  |  |                          MBEDTLS_SSL_PEER_CERT_DIGEST_DFL_TYPE), | 
					
						
							|  |  |  |                      start, len, | 
					
						
							|  |  |  |                      ssl->session_negotiate->peer_cert_digest); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     ssl->session_negotiate->peer_cert_digest_type = | 
					
						
							|  |  |  |         MBEDTLS_SSL_PEER_CERT_DIGEST_DFL_TYPE; | 
					
						
							|  |  |  |     ssl->session_negotiate->peer_cert_digest_len = | 
					
						
							|  |  |  |         MBEDTLS_SSL_PEER_CERT_DIGEST_DFL_LEN; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_remember_peer_pubkey(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                     unsigned char *start, size_t len) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     unsigned char *end = start + len; | 
					
						
							|  |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Make a copy of the peer's raw public key. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_pk_init(&ssl->handshake->peer_pubkey); | 
					
						
							|  |  |  |     ret = mbedtls_pk_parse_subpubkey(&start, end, | 
					
						
							|  |  |  |                                      &ssl->handshake->peer_pubkey); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         /* We should have parsed the public key before. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         return MBEDTLS_ERR_SSL_INTERNAL_ERROR; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* !MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_parse_certificate(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = 0; | 
					
						
							|  |  |  |     int crt_expected; | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SRV_C) && defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
 | 
					
						
							|  |  |  |     const int authmode = ssl->handshake->sni_authmode != MBEDTLS_SSL_VERIFY_UNSET | 
					
						
							|  |  |  |                        ? ssl->handshake->sni_authmode | 
					
						
							|  |  |  |                        : ssl->conf->authmode; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     const int authmode = ssl->conf->authmode; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     void *rs_ctx = NULL; | 
					
						
							|  |  |  |     mbedtls_x509_crt *chain = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> parse certificate")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     crt_expected = ssl_parse_certificate_coordinate(ssl, authmode); | 
					
						
							|  |  |  |     if (crt_expected == SSL_CERTIFICATE_SKIP) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(2, ("<= skip parse certificate")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_ECP_RESTARTABLE_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->handshake->ecrs_enabled && | 
					
						
							|  |  |  |         ssl->handshake->ecrs_state == ssl_ecrs_crt_verify) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         chain = ssl->handshake->ecrs_peer_cert; | 
					
						
							|  |  |  |         ssl->handshake->ecrs_peer_cert = NULL; | 
					
						
							|  |  |  |         goto crt_verify; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_ssl_read_record(ssl, 1)) != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         /* mbedtls_ssl_read_record may have sent an alert already. We
 | 
					
						
							|  |  |  |            let it decide whether to alert. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_read_record", ret); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl_srv_check_client_no_crt_notification(ssl) == 0) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ssl->session_negotiate->verify_result = MBEDTLS_X509_BADCERT_MISSING; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (authmode != MBEDTLS_SSL_VERIFY_OPTIONAL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             ret = MBEDTLS_ERR_SSL_NO_CLIENT_CERTIFICATE; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_SRV_C */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* Clear existing peer CRT structure in case we tried to
 | 
					
						
							|  |  |  |      * reuse a session but it failed, and allocate a new one. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ssl_clear_peer_cert(ssl->session_negotiate); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     chain = mbedtls_calloc(1, sizeof(mbedtls_x509_crt)); | 
					
						
							|  |  |  |     if (chain == NULL) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("alloc(%" MBEDTLS_PRINTF_SIZET " bytes) failed", | 
					
						
							|  |  |  |                                   sizeof(mbedtls_x509_crt))); | 
					
						
							|  |  |  |         mbedtls_ssl_send_alert_message(ssl, | 
					
						
							|  |  |  |                                        MBEDTLS_SSL_ALERT_LEVEL_FATAL, | 
					
						
							|  |  |  |                                        MBEDTLS_SSL_ALERT_MSG_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         ret = MBEDTLS_ERR_SSL_ALLOC_FAILED; | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_x509_crt_init(chain); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = ssl_parse_certificate_chain(ssl, chain); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_ECP_RESTARTABLE_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->handshake->ecrs_enabled) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ssl->handshake->ecrs_state = ssl_ecrs_crt_verify; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | crt_verify: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->handshake->ecrs_enabled) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         rs_ctx = &ssl->handshake->ecrs_ctx; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = ssl_parse_certificate_verify(ssl, authmode, | 
					
						
							|  |  |  |                                        chain, rs_ctx); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         unsigned char *crt_start, *pk_start; | 
					
						
							|  |  |  |         size_t crt_len, pk_len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* We parse the CRT chain without copying, so
 | 
					
						
							|  |  |  |          * these pointers point into the input buffer, | 
					
						
							|  |  |  |          * and are hence still valid after freeing the | 
					
						
							|  |  |  |          * CRT chain. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         crt_start = chain->raw.p; | 
					
						
							|  |  |  |         crt_len   = chain->raw.len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         pk_start = chain->pk_raw.p; | 
					
						
							|  |  |  |         pk_len   = chain->pk_raw.len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Free the CRT structures before computing
 | 
					
						
							|  |  |  |          * digest and copying the peer's public key. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_x509_crt_free(chain); | 
					
						
							|  |  |  |         mbedtls_free(chain); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         chain = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ret = ssl_remember_peer_crt_digest(ssl, crt_start, crt_len); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ret = ssl_remember_peer_pubkey(ssl, pk_start, pk_len); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             goto exit; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else /* !MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
 | 
					
						
							|  |  |  |     /* Pass ownership to session structure. */ | 
					
						
							|  |  |  |     ssl->session_negotiate->peer_cert = chain; | 
					
						
							|  |  |  |     chain = NULL; | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("<= parse certificate")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | exit: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ret == 0) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ssl->state++; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_ECP_RESTARTABLE_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ret == MBEDTLS_ERR_SSL_CRYPTO_IN_PROGRESS) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ssl->handshake->ecrs_peer_cert = chain; | 
					
						
							|  |  |  |         chain = NULL; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (chain != NULL) { | 
					
						
							|  |  |  |         mbedtls_x509_crt_free(chain); | 
					
						
							|  |  |  |         mbedtls_free(chain); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_optimize_checksum(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                    const mbedtls_ssl_ciphersuite_t *ciphersuite_info) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     ((void) ciphersuite_info); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3) || defined(MBEDTLS_SSL_PROTO_TLS1) || \
 | 
					
						
							|  |  |  |     defined(MBEDTLS_SSL_PROTO_TLS1_1) | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->minor_ver < MBEDTLS_SSL_MINOR_VERSION_3) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ssl->handshake->update_checksum = ssl_update_checksum_md5sha1; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_SHA512_NO_SHA384)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ciphersuite_info->mac == MBEDTLS_MD_SHA384) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ssl->handshake->update_checksum = ssl_update_checksum_sha384; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA256_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ciphersuite_info->mac != MBEDTLS_MD_SHA384) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ssl->handshake->update_checksum = ssl_update_checksum_sha256; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
 | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("should never happen")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_reset_checksum(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3) || defined(MBEDTLS_SSL_PROTO_TLS1) || \
 | 
					
						
							|  |  |  |     defined(MBEDTLS_SSL_PROTO_TLS1_1) | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_starts_ret(&ssl->handshake->fin_md5); | 
					
						
							|  |  |  |     mbedtls_sha1_starts_ret(&ssl->handshake->fin_sha1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA256_C)
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     psa_hash_abort(&ssl->handshake->fin_sha256_psa); | 
					
						
							|  |  |  |     psa_hash_setup(&ssl->handshake->fin_sha256_psa, PSA_ALG_SHA_256); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha256_starts_ret(&ssl->handshake->fin_sha256, 0); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_SHA512_NO_SHA384)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     psa_hash_abort(&ssl->handshake->fin_sha384_psa); | 
					
						
							|  |  |  |     psa_hash_setup(&ssl->handshake->fin_sha384_psa, PSA_ALG_SHA_384); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha512_starts_ret(&ssl->handshake->fin_sha512, 1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ssl_update_checksum_start(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                       const unsigned char *buf, size_t len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3) || defined(MBEDTLS_SSL_PROTO_TLS1) || \
 | 
					
						
							|  |  |  |     defined(MBEDTLS_SSL_PROTO_TLS1_1) | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_update_ret(&ssl->handshake->fin_md5, buf, len); | 
					
						
							|  |  |  |     mbedtls_sha1_update_ret(&ssl->handshake->fin_sha1, buf, len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA256_C)
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     psa_hash_update(&ssl->handshake->fin_sha256_psa, buf, len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha256_update_ret(&ssl->handshake->fin_sha256, buf, len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_SHA512_NO_SHA384)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     psa_hash_update(&ssl->handshake->fin_sha384_psa, buf, len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha512_update_ret(&ssl->handshake->fin_sha512, buf, len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3) || defined(MBEDTLS_SSL_PROTO_TLS1) || \
 | 
					
						
							|  |  |  |     defined(MBEDTLS_SSL_PROTO_TLS1_1) | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ssl_update_checksum_md5sha1(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                         const unsigned char *buf, size_t len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_update_ret(&ssl->handshake->fin_md5, buf, len); | 
					
						
							|  |  |  |     mbedtls_sha1_update_ret(&ssl->handshake->fin_sha1, buf, len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA256_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ssl_update_checksum_sha256(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                        const unsigned char *buf, size_t len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     psa_hash_update(&ssl->handshake->fin_sha256_psa, buf, len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha256_update_ret(&ssl->handshake->fin_sha256, buf, len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_SHA512_NO_SHA384)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ssl_update_checksum_sha384(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                        const unsigned char *buf, size_t len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     psa_hash_update(&ssl->handshake->fin_sha384_psa, buf, len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha512_update_ret(&ssl->handshake->fin_sha512, buf, len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3)
 | 
					
						
							|  |  |  | static void ssl_calc_finished_ssl( | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ssl_context *ssl, unsigned char *buf, int from) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     const char *sender; | 
					
						
							|  |  |  |     mbedtls_md5_context  md5; | 
					
						
							|  |  |  |     mbedtls_sha1_context sha1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     unsigned char padbuf[48]; | 
					
						
							|  |  |  |     unsigned char md5sum[16]; | 
					
						
							|  |  |  |     unsigned char sha1sum[20]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     mbedtls_ssl_session *session = ssl->session_negotiate; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (!session) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         session = ssl->session; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> calc  finished ssl")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_init(&md5); | 
					
						
							|  |  |  |     mbedtls_sha1_init(&sha1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_clone(&md5, &ssl->handshake->fin_md5); | 
					
						
							|  |  |  |     mbedtls_sha1_clone(&sha1, &ssl->handshake->fin_sha1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * SSLv3: | 
					
						
							|  |  |  |      *   hash = | 
					
						
							|  |  |  |      *      MD5( master + pad2 + | 
					
						
							|  |  |  |      *          MD5( handshake + sender + master + pad1 ) ) | 
					
						
							|  |  |  |      *   + SHA1( master + pad2 + | 
					
						
							|  |  |  |      *         SHA1( handshake + sender + master + pad1 ) ) | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_MD5_ALT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_BUF(4, "finished  md5 state", (unsigned char *) | 
					
						
							|  |  |  |                           md5.state, sizeof(md5.state)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_SHA1_ALT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_BUF(4, "finished sha1 state", (unsigned char *) | 
					
						
							|  |  |  |                           sha1.state, sizeof(sha1.state)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     sender = (from == MBEDTLS_SSL_IS_CLIENT) ? "CLNT" | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |                                        : "SRVR"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memset(padbuf, 0x36, 48); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_update_ret(&md5, (const unsigned char *) sender, 4); | 
					
						
							|  |  |  |     mbedtls_md5_update_ret(&md5, session->master, 48); | 
					
						
							|  |  |  |     mbedtls_md5_update_ret(&md5, padbuf, 48); | 
					
						
							|  |  |  |     mbedtls_md5_finish_ret(&md5, md5sum); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha1_update_ret(&sha1, (const unsigned char *) sender, 4); | 
					
						
							|  |  |  |     mbedtls_sha1_update_ret(&sha1, session->master, 48); | 
					
						
							|  |  |  |     mbedtls_sha1_update_ret(&sha1, padbuf, 40); | 
					
						
							|  |  |  |     mbedtls_sha1_finish_ret(&sha1, sha1sum); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memset(padbuf, 0x5C, 48); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_starts_ret(&md5); | 
					
						
							|  |  |  |     mbedtls_md5_update_ret(&md5, session->master, 48); | 
					
						
							|  |  |  |     mbedtls_md5_update_ret(&md5, padbuf, 48); | 
					
						
							|  |  |  |     mbedtls_md5_update_ret(&md5, md5sum, 16); | 
					
						
							|  |  |  |     mbedtls_md5_finish_ret(&md5, buf); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha1_starts_ret(&sha1); | 
					
						
							|  |  |  |     mbedtls_sha1_update_ret(&sha1, session->master, 48); | 
					
						
							|  |  |  |     mbedtls_sha1_update_ret(&sha1, padbuf, 40); | 
					
						
							|  |  |  |     mbedtls_sha1_update_ret(&sha1, sha1sum, 20); | 
					
						
							|  |  |  |     mbedtls_sha1_finish_ret(&sha1, buf + 16); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_BUF(3, "calc finished result", buf, 36); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_free(&md5); | 
					
						
							|  |  |  |     mbedtls_sha1_free(&sha1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(padbuf, sizeof(padbuf)); | 
					
						
							|  |  |  |     mbedtls_platform_zeroize(md5sum, sizeof(md5sum)); | 
					
						
							|  |  |  |     mbedtls_platform_zeroize(sha1sum, sizeof(sha1sum)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("<= calc  finished")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_SSL3 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1) || defined(MBEDTLS_SSL_PROTO_TLS1_1)
 | 
					
						
							|  |  |  | static void ssl_calc_finished_tls( | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ssl_context *ssl, unsigned char *buf, int from) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int len = 12; | 
					
						
							|  |  |  |     const char *sender; | 
					
						
							|  |  |  |     mbedtls_md5_context  md5; | 
					
						
							|  |  |  |     mbedtls_sha1_context sha1; | 
					
						
							|  |  |  |     unsigned char padbuf[36]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     mbedtls_ssl_session *session = ssl->session_negotiate; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (!session) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         session = ssl->session; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> calc  finished tls")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_init(&md5); | 
					
						
							|  |  |  |     mbedtls_sha1_init(&sha1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_clone(&md5, &ssl->handshake->fin_md5); | 
					
						
							|  |  |  |     mbedtls_sha1_clone(&sha1, &ssl->handshake->fin_sha1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * TLSv1: | 
					
						
							|  |  |  |      *   hash = PRF( master, finished_label, | 
					
						
							|  |  |  |      *               MD5( handshake ) + SHA1( handshake ) )[0..11] | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_MD5_ALT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_BUF(4, "finished  md5 state", (unsigned char *) | 
					
						
							|  |  |  |                           md5.state, sizeof(md5.state)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_SHA1_ALT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_BUF(4, "finished sha1 state", (unsigned char *) | 
					
						
							|  |  |  |                           sha1.state, sizeof(sha1.state)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     sender = (from == MBEDTLS_SSL_IS_CLIENT) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |              ? "client finished" | 
					
						
							|  |  |  |              : "server finished"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_finish_ret(&md5, padbuf); | 
					
						
							|  |  |  |     mbedtls_sha1_finish_ret(&sha1, padbuf + 16); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ssl->handshake->tls_prf(session->master, 48, sender, | 
					
						
							|  |  |  |                             padbuf, 36, buf, len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_BUF(3, "calc finished result", buf, len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_free(&md5); | 
					
						
							|  |  |  |     mbedtls_sha1_free(&sha1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(padbuf, sizeof(padbuf)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("<= calc  finished")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1 || MBEDTLS_SSL_PROTO_TLS1_1 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA256_C)
 | 
					
						
							|  |  |  | static void ssl_calc_finished_tls_sha256( | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ssl_context *ssl, unsigned char *buf, int from) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int len = 12; | 
					
						
							|  |  |  |     const char *sender; | 
					
						
							|  |  |  |     unsigned char padbuf[32]; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  |     size_t hash_size; | 
					
						
							|  |  |  |     psa_hash_operation_t sha256_psa = PSA_HASH_OPERATION_INIT; | 
					
						
							|  |  |  |     psa_status_t status; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     mbedtls_sha256_context sha256; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     mbedtls_ssl_session *session = ssl->session_negotiate; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (!session) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         session = ssl->session; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     sender = (from == MBEDTLS_SSL_IS_CLIENT) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |              ? "client finished" | 
					
						
							|  |  |  |              : "server finished"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  |     sha256_psa = psa_hash_operation_init(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> calc PSA finished tls sha256")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     status = psa_hash_clone(&ssl->handshake->fin_sha256_psa, &sha256_psa); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(2, ("PSA hash clone failed")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     status = psa_hash_finish(&sha256_psa, padbuf, sizeof(padbuf), &hash_size); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(2, ("PSA hash finish failed")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_BUF(3, "PSA calculated padbuf", padbuf, 32); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha256_init(&sha256); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> calc  finished tls sha256")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha256_clone(&sha256, &ssl->handshake->fin_sha256); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * TLSv1.2: | 
					
						
							|  |  |  |      *   hash = PRF( master, finished_label, | 
					
						
							|  |  |  |      *               Hash( handshake ) )[0.11] | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_SHA256_ALT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_BUF(4, "finished sha2 state", (unsigned char *) | 
					
						
							|  |  |  |                           sha256.state, sizeof(sha256.state)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha256_finish_ret(&sha256, padbuf); | 
					
						
							|  |  |  |     mbedtls_sha256_free(&sha256); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ssl->handshake->tls_prf(session->master, 48, sender, | 
					
						
							|  |  |  |                             padbuf, 32, buf, len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_BUF(3, "calc finished result", buf, len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(padbuf, sizeof(padbuf)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("<= calc  finished")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SHA256_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_SHA512_NO_SHA384)
 | 
					
						
							| 
									
										
										
										
											2020-12-18 21:22:37 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | static void ssl_calc_finished_tls_sha384( | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ssl_context *ssl, unsigned char *buf, int from) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int len = 12; | 
					
						
							|  |  |  |     const char *sender; | 
					
						
							|  |  |  |     unsigned char padbuf[48]; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  |     size_t hash_size; | 
					
						
							|  |  |  |     psa_hash_operation_t sha384_psa = PSA_HASH_OPERATION_INIT; | 
					
						
							|  |  |  |     psa_status_t status; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     mbedtls_sha512_context sha512; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     mbedtls_ssl_session *session = ssl->session_negotiate; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (!session) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         session = ssl->session; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     sender = (from == MBEDTLS_SSL_IS_CLIENT) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |                 ? "client finished" | 
					
						
							|  |  |  |                 : "server finished"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  |     sha384_psa = psa_hash_operation_init(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> calc PSA finished tls sha384")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     status = psa_hash_clone(&ssl->handshake->fin_sha384_psa, &sha384_psa); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(2, ("PSA hash clone failed")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     status = psa_hash_finish(&sha384_psa, padbuf, sizeof(padbuf), &hash_size); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(2, ("PSA hash finish failed")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_BUF(3, "PSA calculated padbuf", padbuf, 48); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha512_init(&sha512); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> calc  finished tls sha384")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha512_clone(&sha512, &ssl->handshake->fin_sha512); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * TLSv1.2: | 
					
						
							|  |  |  |      *   hash = PRF( master, finished_label, | 
					
						
							|  |  |  |      *               Hash( handshake ) )[0.11] | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_SHA512_ALT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_BUF(4, "finished sha512 state", (unsigned char *) | 
					
						
							|  |  |  |                           sha512.state, sizeof(sha512.state)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-07-20 12:32:46 +02:00
										 |  |  |     /* mbedtls_sha512_finish_ret's output parameter is declared as a
 | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  |      * 64-byte buffer, but since we're using SHA-384, we know that the | 
					
						
							| 
									
										
										
										
											2021-07-20 12:32:46 +02:00
										 |  |  |      * output fits in 48 bytes. This is correct C, but GCC 11.1 warns | 
					
						
							|  |  |  |      * about it. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | #if defined(__GNUC__) && __GNUC__ >= 11
 | 
					
						
							|  |  |  | #pragma GCC diagnostic push
 | 
					
						
							|  |  |  | #pragma GCC diagnostic ignored "-Wstringop-overflow"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha512_finish_ret(&sha512, padbuf); | 
					
						
							| 
									
										
										
										
											2021-07-20 12:32:46 +02:00
										 |  |  | #if defined(__GNUC__) && __GNUC__ >= 11
 | 
					
						
							|  |  |  | #pragma GCC diagnostic pop
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha512_free(&sha512); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ssl->handshake->tls_prf(session->master, 48, sender, | 
					
						
							|  |  |  |                             padbuf, 48, buf, len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_BUF(3, "calc finished result", buf, len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(padbuf, sizeof(padbuf)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("<= calc  finished")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SHA512_C && !MBEDTLS_SHA512_NO_SHA384 */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_handshake_wrapup_free_hs_transform(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(3, ("=> handshake wrapup: final free")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Free our handshake params | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ssl_handshake_free(ssl); | 
					
						
							|  |  |  |     mbedtls_free(ssl->handshake); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     ssl->handshake = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  |      * Free the previous transform and switch in the current one | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->transform) { | 
					
						
							|  |  |  |         mbedtls_ssl_transform_free(ssl->transform); | 
					
						
							|  |  |  |         mbedtls_free(ssl->transform); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     ssl->transform = ssl->transform_negotiate; | 
					
						
							|  |  |  |     ssl->transform_negotiate = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(3, ("<= handshake wrapup: final free")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_handshake_wrapup(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int resume = ssl->handshake->resume; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(3, ("=> handshake wrapup")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_RENEGOTIATION)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->renego_status == MBEDTLS_SSL_RENEGOTIATION_IN_PROGRESS) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ssl->renego_status =  MBEDTLS_SSL_RENEGOTIATION_DONE; | 
					
						
							|  |  |  |         ssl->renego_records_seen = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Free the previous session and switch in the current one | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->session) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
 | 
					
						
							|  |  |  |         /* RFC 7366 3.1: keep the EtM state */ | 
					
						
							|  |  |  |         ssl->session_negotiate->encrypt_then_mac = | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             ssl->session->encrypt_then_mac; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_ssl_session_free(ssl->session); | 
					
						
							|  |  |  |         mbedtls_free(ssl->session); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     ssl->session = ssl->session_negotiate; | 
					
						
							|  |  |  |     ssl->session_negotiate = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Add cache entry | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->f_set_cache != NULL && | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ssl->session->id_len != 0 && | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         resume == 0) { | 
					
						
							|  |  |  |         if (ssl->conf->f_set_cache(ssl->conf->p_cache, ssl->session) != 0) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_MSG(1, ("cache did not store session")); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM && | 
					
						
							|  |  |  |         ssl->handshake->flight != NULL) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         /* Cancel handshake timer */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_ssl_set_timer(ssl, 0); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* Keep last flight around in case we need to resend it:
 | 
					
						
							|  |  |  |          * we need the handshake and transform structures for that */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_SSL_DEBUG_MSG(3, ("skip freeing handshake and transform")); | 
					
						
							|  |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ssl_handshake_wrapup_free_hs_transform(ssl); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ssl->state++; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(3, ("<= handshake wrapup")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_write_finished(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret, hash_len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> write finished")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ssl_update_out_pointers(ssl, ssl->transform_negotiate); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ssl->handshake->calc_finished(ssl, ssl->out_msg + 4, ssl->conf->endpoint); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * RFC 5246 7.4.9 (Page 63) says 12 is the default length and ciphersuites | 
					
						
							|  |  |  |      * may define some other value. Currently (early 2016), no defined | 
					
						
							|  |  |  |      * ciphersuite does this (and this is unlikely to change as activity has | 
					
						
							|  |  |  |      * moved to TLS 1.3 now) so we can keep the hardcoded 12 here. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     hash_len = (ssl->minor_ver == MBEDTLS_SSL_MINOR_VERSION_0) ? 36 : 12; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_RENEGOTIATION)
 | 
					
						
							|  |  |  |     ssl->verify_data_len = hash_len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(ssl->own_verify_data, ssl->out_msg + 4, hash_len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ssl->out_msglen  = 4 + hash_len; | 
					
						
							|  |  |  |     ssl->out_msgtype = MBEDTLS_SSL_MSG_HANDSHAKE; | 
					
						
							|  |  |  |     ssl->out_msg[0]  = MBEDTLS_SSL_HS_FINISHED; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * In case of session resuming, invert the client and server | 
					
						
							|  |  |  |      * ChangeCipherSpec messages order. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->handshake->resume != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (ssl->conf->endpoint == MBEDTLS_SSL_IS_CLIENT) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             ssl->state = MBEDTLS_SSL_HANDSHAKE_WRAPUP; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (ssl->conf->endpoint == MBEDTLS_SSL_IS_SERVER) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             ssl->state = MBEDTLS_SSL_CLIENT_CHANGE_CIPHER_SPEC; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ssl->state++; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Switch to our negotiated transform and session parameters for outbound | 
					
						
							|  |  |  |      * data. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(3, ("switching to new transform spec for outbound data")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         unsigned char i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Remember current epoch settings for resending */ | 
					
						
							|  |  |  |         ssl->handshake->alt_transform_out = ssl->transform_out; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         memcpy(ssl->handshake->alt_out_ctr, ssl->cur_out_ctr, 8); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* Set sequence_number to zero */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         memset(ssl->cur_out_ctr + 2, 0, 6); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* Increment epoch */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         for (i = 2; i > 0; i--) { | 
					
						
							|  |  |  |             if (++ssl->cur_out_ctr[i - 1] != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /* The loop goes to its end iff the counter is wrapping */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (i == 0) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_MSG(1, ("DTLS epoch would wrap")); | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_COUNTER_WRAPPING; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_PROTO_DTLS */
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memset(ssl->cur_out_ctr, 0, 8); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ssl->transform_out = ssl->transform_negotiate; | 
					
						
							|  |  |  |     ssl->session_out = ssl->session_negotiate; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_HW_RECORD_ACCEL)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_ssl_hw_record_activate != NULL) { | 
					
						
							|  |  |  |         if ((ret = mbedtls_ssl_hw_record_activate(ssl, MBEDTLS_SSL_CHANNEL_OUTBOUND)) != 0) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_hw_record_activate", ret); | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_HW_ACCEL_FAILED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM) { | 
					
						
							|  |  |  |         mbedtls_ssl_send_flight_completed(ssl); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_ssl_write_handshake_msg(ssl)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_write_handshake_msg", ret); | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM && | 
					
						
							|  |  |  |         (ret = mbedtls_ssl_flight_transmit(ssl)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_flight_transmit", ret); | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("<= write finished")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3)
 | 
					
						
							|  |  |  | #define SSL_MAX_HASH_LEN 36
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define SSL_MAX_HASH_LEN 12
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_parse_finished(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     unsigned int hash_len; | 
					
						
							|  |  |  |     unsigned char buf[SSL_MAX_HASH_LEN]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> parse finished")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |     /* There is currently no ciphersuite using another length with TLS 1.2 */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->minor_ver == MBEDTLS_SSL_MINOR_VERSION_0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         hash_len = 36; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     hash_len = 12; | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ssl->handshake->calc_finished(ssl, buf, ssl->conf->endpoint ^ 1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_ssl_read_record(ssl, 1)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_read_record", ret); | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->in_msgtype != MBEDTLS_SSL_MSG_HANDSHAKE) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("bad finished message")); | 
					
						
							|  |  |  |         mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL, | 
					
						
							|  |  |  |                                        MBEDTLS_SSL_ALERT_MSG_UNEXPECTED_MESSAGE); | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         ret = MBEDTLS_ERR_SSL_UNEXPECTED_MESSAGE; | 
					
						
							|  |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->in_msg[0] != MBEDTLS_SSL_HS_FINISHED || | 
					
						
							|  |  |  |         ssl->in_hslen  != mbedtls_ssl_hs_hdr_len(ssl) + hash_len) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("bad finished message")); | 
					
						
							|  |  |  |         mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL, | 
					
						
							|  |  |  |                                        MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR); | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         ret = MBEDTLS_ERR_SSL_BAD_HS_FINISHED; | 
					
						
							|  |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_ct_memcmp(ssl->in_msg + mbedtls_ssl_hs_hdr_len(ssl), | 
					
						
							|  |  |  |                           buf, hash_len) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("bad finished message")); | 
					
						
							|  |  |  |         mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL, | 
					
						
							|  |  |  |                                        MBEDTLS_SSL_ALERT_MSG_DECRYPT_ERROR); | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         ret = MBEDTLS_ERR_SSL_BAD_HS_FINISHED; | 
					
						
							|  |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_RENEGOTIATION)
 | 
					
						
							|  |  |  |     ssl->verify_data_len = hash_len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(ssl->peer_verify_data, buf, hash_len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->handshake->resume != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (ssl->conf->endpoint == MBEDTLS_SSL_IS_CLIENT) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             ssl->state = MBEDTLS_SSL_CLIENT_CHANGE_CIPHER_SPEC; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (ssl->conf->endpoint == MBEDTLS_SSL_IS_SERVER) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             ssl->state = MBEDTLS_SSL_HANDSHAKE_WRAPUP; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ssl->state++; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM) { | 
					
						
							|  |  |  |         mbedtls_ssl_recv_flight_completed(ssl); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("<= parse finished")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  | exit: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(buf, hash_len); | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ssl_handshake_params_init(mbedtls_ssl_handshake_params *handshake) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memset(handshake, 0, sizeof(mbedtls_ssl_handshake_params)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3) || defined(MBEDTLS_SSL_PROTO_TLS1) || \
 | 
					
						
							|  |  |  |     defined(MBEDTLS_SSL_PROTO_TLS1_1) | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_init(&handshake->fin_md5); | 
					
						
							|  |  |  |     mbedtls_sha1_init(&handshake->fin_sha1); | 
					
						
							|  |  |  |     mbedtls_md5_starts_ret(&handshake->fin_md5); | 
					
						
							|  |  |  |     mbedtls_sha1_starts_ret(&handshake->fin_sha1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA256_C)
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  |     handshake->fin_sha256_psa = psa_hash_operation_init(); | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     psa_hash_setup(&handshake->fin_sha256_psa, PSA_ALG_SHA_256); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha256_init(&handshake->fin_sha256); | 
					
						
							|  |  |  |     mbedtls_sha256_starts_ret(&handshake->fin_sha256, 0); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_SHA512_NO_SHA384)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  |     handshake->fin_sha384_psa = psa_hash_operation_init(); | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     psa_hash_setup(&handshake->fin_sha384_psa, PSA_ALG_SHA_384); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha512_init(&handshake->fin_sha512); | 
					
						
							|  |  |  |     mbedtls_sha512_starts_ret(&handshake->fin_sha512, 1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     handshake->update_checksum = ssl_update_checksum_start; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ssl_sig_hash_set_init(&handshake->hash_algs); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_DHM_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_dhm_init(&handshake->dhm_ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECDH_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ecdh_init(&handshake->ecdh_ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ecjpake_init(&handshake->ecjpake_ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							|  |  |  |     handshake->ecjpake_cache = NULL; | 
					
						
							|  |  |  |     handshake->ecjpake_cache_len = 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_ECP_RESTARTABLE_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_x509_crt_restart_init(&handshake->ecrs_ctx); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
 | 
					
						
							|  |  |  |     handshake->sni_authmode = MBEDTLS_SSL_VERIFY_UNSET; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C) && \
 | 
					
						
							|  |  |  |     !defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE) | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_pk_init(&handshake->peer_pubkey); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_transform_init(mbedtls_ssl_transform *transform) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memset(transform, 0, sizeof(mbedtls_ssl_transform)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_cipher_init(&transform->cipher_ctx_enc); | 
					
						
							|  |  |  |     mbedtls_cipher_init(&transform->cipher_ctx_dec); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_SOME_MODES_USE_MAC)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md_init(&transform->md_ctx_enc); | 
					
						
							|  |  |  |     mbedtls_md_init(&transform->md_ctx_dec); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_session_init(mbedtls_ssl_session *session) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memset(session, 0, sizeof(mbedtls_ssl_session)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_handshake_init(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     /* Clear old handshake information if present */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->transform_negotiate) { | 
					
						
							|  |  |  |         mbedtls_ssl_transform_free(ssl->transform_negotiate); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (ssl->session_negotiate) { | 
					
						
							|  |  |  |         mbedtls_ssl_session_free(ssl->session_negotiate); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (ssl->handshake) { | 
					
						
							|  |  |  |         mbedtls_ssl_handshake_free(ssl); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Either the pointers are now NULL or cleared properly and can be freed. | 
					
						
							|  |  |  |      * Now allocate missing structures. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->transform_negotiate == NULL) { | 
					
						
							|  |  |  |         ssl->transform_negotiate = mbedtls_calloc(1, sizeof(mbedtls_ssl_transform)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->session_negotiate == NULL) { | 
					
						
							|  |  |  |         ssl->session_negotiate = mbedtls_calloc(1, sizeof(mbedtls_ssl_session)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->handshake == NULL) { | 
					
						
							|  |  |  |         ssl->handshake = mbedtls_calloc(1, sizeof(mbedtls_ssl_handshake_params)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH)
 | 
					
						
							|  |  |  |     /* If the buffers are too small - reallocate */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     handle_buffer_resizing(ssl, 0, MBEDTLS_SSL_IN_BUFFER_LEN, | 
					
						
							|  |  |  |                            MBEDTLS_SSL_OUT_BUFFER_LEN); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* All pointers should exist and can be directly freed without issue */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->handshake == NULL || | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ssl->transform_negotiate == NULL || | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ssl->session_negotiate == NULL) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("alloc() of ssl sub-contexts failed")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_free(ssl->handshake); | 
					
						
							|  |  |  |         mbedtls_free(ssl->transform_negotiate); | 
					
						
							|  |  |  |         mbedtls_free(ssl->session_negotiate); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         ssl->handshake = NULL; | 
					
						
							|  |  |  |         ssl->transform_negotiate = NULL; | 
					
						
							|  |  |  |         ssl->session_negotiate = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         return MBEDTLS_ERR_SSL_ALLOC_FAILED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Initialize structures */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ssl_session_init(ssl->session_negotiate); | 
					
						
							|  |  |  |     mbedtls_ssl_transform_init(ssl->transform_negotiate); | 
					
						
							|  |  |  |     ssl_handshake_params_init(ssl->handshake); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ssl->handshake->alt_transform_out = ssl->transform_out; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (ssl->conf->endpoint == MBEDTLS_SSL_IS_CLIENT) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             ssl->handshake->retransmit_state = MBEDTLS_SSL_RETRANS_PREPARING; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             ssl->handshake->retransmit_state = MBEDTLS_SSL_RETRANS_WAITING; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_ssl_set_timer(ssl, 0); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY) && defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							|  |  |  | /* Dummy cookie callbacks for defaults */ | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_cookie_write_dummy(void *ctx, | 
					
						
							|  |  |  |                                   unsigned char **p, unsigned char *end, | 
					
						
							|  |  |  |                                   const unsigned char *cli_id, size_t cli_id_len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     ((void) ctx); | 
					
						
							|  |  |  |     ((void) p); | 
					
						
							|  |  |  |     ((void) end); | 
					
						
							|  |  |  |     ((void) cli_id); | 
					
						
							|  |  |  |     ((void) cli_id_len); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_cookie_check_dummy(void *ctx, | 
					
						
							|  |  |  |                                   const unsigned char *cookie, size_t cookie_len, | 
					
						
							|  |  |  |                                   const unsigned char *cli_id, size_t cli_id_len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     ((void) ctx); | 
					
						
							|  |  |  |     ((void) cookie); | 
					
						
							|  |  |  |     ((void) cookie_len); | 
					
						
							|  |  |  |     ((void) cli_id); | 
					
						
							|  |  |  |     ((void) cli_id_len); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_DTLS_HELLO_VERIFY && MBEDTLS_SSL_SRV_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Initialize an SSL context | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_init(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memset(ssl, 0, sizeof(mbedtls_ssl_context)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Setup an SSL context | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_setup(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                       const mbedtls_ssl_config *conf) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							|  |  |  |     size_t in_buf_len = MBEDTLS_SSL_IN_BUFFER_LEN; | 
					
						
							|  |  |  |     size_t out_buf_len = MBEDTLS_SSL_OUT_BUFFER_LEN; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ssl->conf = conf; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Prepare base structures | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Set to NULL in case of an error condition */ | 
					
						
							|  |  |  |     ssl->out_buf = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH)
 | 
					
						
							|  |  |  |     ssl->in_buf_len = in_buf_len; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ssl->in_buf = mbedtls_calloc(1, in_buf_len); | 
					
						
							|  |  |  |     if (ssl->in_buf == NULL) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("alloc(%" MBEDTLS_PRINTF_SIZET " bytes) failed", in_buf_len)); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         ret = MBEDTLS_ERR_SSL_ALLOC_FAILED; | 
					
						
							|  |  |  |         goto error; | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH)
 | 
					
						
							|  |  |  |     ssl->out_buf_len = out_buf_len; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ssl->out_buf = mbedtls_calloc(1, out_buf_len); | 
					
						
							|  |  |  |     if (ssl->out_buf == NULL) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("alloc(%" MBEDTLS_PRINTF_SIZET " bytes) failed", out_buf_len)); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         ret = MBEDTLS_ERR_SSL_ALLOC_FAILED; | 
					
						
							|  |  |  |         goto error; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ssl_reset_in_out_pointers(ssl); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_DTLS_SRTP)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memset(&ssl->dtls_srtp_info, 0, sizeof(ssl->dtls_srtp_info)); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = ssl_handshake_init(ssl)) != 0) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         goto error; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | error: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_free(ssl->in_buf); | 
					
						
							|  |  |  |     mbedtls_free(ssl->out_buf); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ssl->conf = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH)
 | 
					
						
							|  |  |  |     ssl->in_buf_len = 0; | 
					
						
							|  |  |  |     ssl->out_buf_len = 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     ssl->in_buf = NULL; | 
					
						
							|  |  |  |     ssl->out_buf = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ssl->in_hdr = NULL; | 
					
						
							|  |  |  |     ssl->in_ctr = NULL; | 
					
						
							|  |  |  |     ssl->in_len = NULL; | 
					
						
							|  |  |  |     ssl->in_iv = NULL; | 
					
						
							|  |  |  |     ssl->in_msg = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ssl->out_hdr = NULL; | 
					
						
							|  |  |  |     ssl->out_ctr = NULL; | 
					
						
							|  |  |  |     ssl->out_len = NULL; | 
					
						
							|  |  |  |     ssl->out_iv = NULL; | 
					
						
							|  |  |  |     ssl->out_msg = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Reset an initialized and used SSL context for re-use while retaining | 
					
						
							|  |  |  |  * all application-set variables, function pointers and data. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * If partial is non-zero, keep data in the input buffer and client ID. | 
					
						
							|  |  |  |  * (Use when a DTLS client reconnects from the same port.) | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_session_reset_int(mbedtls_ssl_context *ssl, int partial) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH)
 | 
					
						
							|  |  |  |     size_t in_buf_len = ssl->in_buf_len; | 
					
						
							|  |  |  |     size_t out_buf_len = ssl->out_buf_len; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     size_t in_buf_len = MBEDTLS_SSL_IN_BUFFER_LEN; | 
					
						
							|  |  |  |     size_t out_buf_len = MBEDTLS_SSL_OUT_BUFFER_LEN; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #if !defined(MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE) ||     \
 | 
					
						
							|  |  |  |     !defined(MBEDTLS_SSL_SRV_C) | 
					
						
							|  |  |  |     ((void) partial); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     ssl->state = MBEDTLS_SSL_HELLO_REQUEST; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Cancel any possibly running timer */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ssl_set_timer(ssl, 0); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_RENEGOTIATION)
 | 
					
						
							|  |  |  |     ssl->renego_status = MBEDTLS_SSL_INITIAL_HANDSHAKE; | 
					
						
							|  |  |  |     ssl->renego_records_seen = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ssl->verify_data_len = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memset(ssl->own_verify_data, 0, MBEDTLS_SSL_VERIFY_DATA_MAX_LEN); | 
					
						
							|  |  |  |     memset(ssl->peer_verify_data, 0, MBEDTLS_SSL_VERIFY_DATA_MAX_LEN); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     ssl->secure_renegotiation = MBEDTLS_SSL_LEGACY_RENEGOTIATION; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ssl->in_offt = NULL; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ssl_reset_in_out_pointers(ssl); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ssl->in_msgtype = 0; | 
					
						
							|  |  |  |     ssl->in_msglen = 0; | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							|  |  |  |     ssl->next_record_offset = 0; | 
					
						
							|  |  |  |     ssl->in_epoch = 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ssl_dtls_replay_reset(ssl); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ssl->in_hslen = 0; | 
					
						
							|  |  |  |     ssl->nb_zero = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ssl->keep_current_message = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ssl->out_msgtype = 0; | 
					
						
							|  |  |  |     ssl->out_msglen = 0; | 
					
						
							|  |  |  |     ssl->out_left = 0; | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_CBC_RECORD_SPLITTING)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->split_done != MBEDTLS_SSL_CBC_RECORD_SPLITTING_DISABLED) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ssl->split_done = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memset(ssl->cur_out_ctr, 0, sizeof(ssl->cur_out_ctr)); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     ssl->transform_in = NULL; | 
					
						
							|  |  |  |     ssl->transform_out = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     ssl->session_in = NULL; | 
					
						
							|  |  |  |     ssl->session_out = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memset(ssl->out_buf, 0, out_buf_len); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  |     int clear_in_buf = 1; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE) && defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (partial != 0) { | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  |         clear_in_buf = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE && MBEDTLS_SSL_SRV_C */
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (clear_in_buf) { | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |         ssl->in_left = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         memset(ssl->in_buf, 0, in_buf_len); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_HW_RECORD_ACCEL)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_ssl_hw_record_reset != NULL) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(2, ("going for mbedtls_ssl_hw_record_reset()")); | 
					
						
							|  |  |  |         if ((ret = mbedtls_ssl_hw_record_reset(ssl)) != 0) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_hw_record_reset", ret); | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_HW_ACCEL_FAILED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->transform) { | 
					
						
							|  |  |  |         mbedtls_ssl_transform_free(ssl->transform); | 
					
						
							|  |  |  |         mbedtls_free(ssl->transform); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ssl->transform = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->session) { | 
					
						
							|  |  |  |         mbedtls_ssl_session_free(ssl->session); | 
					
						
							|  |  |  |         mbedtls_free(ssl->session); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ssl->session = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_ALPN)
 | 
					
						
							|  |  |  |     ssl->alpn_chosen = NULL; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY) && defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  |     int free_cli_id = 1; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (partial != 0) { | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  |         free_cli_id = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (free_cli_id) { | 
					
						
							|  |  |  |         mbedtls_free(ssl->cli_id); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ssl->cli_id = NULL; | 
					
						
							|  |  |  |         ssl->cli_id_len = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = ssl_handshake_init(ssl)) != 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Reset an initialized and used SSL context for re-use while retaining | 
					
						
							|  |  |  |  * all application-set variables, function pointers and data. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_session_reset(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return mbedtls_ssl_session_reset_int(ssl, 0); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * SSL set accessors | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_endpoint(mbedtls_ssl_config *conf, int endpoint) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->endpoint   = endpoint; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_transport(mbedtls_ssl_config *conf, int transport) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->transport = transport; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_dtls_anti_replay(mbedtls_ssl_config *conf, char mode) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->anti_replay = mode; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_DTLS_BADMAC_LIMIT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_dtls_badmac_limit(mbedtls_ssl_config *conf, unsigned limit) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->badmac_limit = limit; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_set_datagram_packing(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                       unsigned allow_packing) | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     ssl->disable_datagram_packing = !allow_packing; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_handshake_timeout(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                                         uint32_t min, uint32_t max) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->hs_timeout_min = min; | 
					
						
							|  |  |  |     conf->hs_timeout_max = max; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_authmode(mbedtls_ssl_config *conf, int authmode) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->authmode   = authmode; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_verify(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                              int (*f_vrfy)(void *, mbedtls_x509_crt *, int, uint32_t *), | 
					
						
							|  |  |  |                              void *p_vrfy) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->f_vrfy      = f_vrfy; | 
					
						
							|  |  |  |     conf->p_vrfy      = p_vrfy; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_X509_CRT_PARSE_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_rng(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                           int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                           void *p_rng) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->f_rng      = f_rng; | 
					
						
							|  |  |  |     conf->p_rng      = p_rng; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_dbg(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                           void (*f_dbg)(void *, int, const char *, int, const char *), | 
					
						
							|  |  |  |                           void  *p_dbg) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->f_dbg      = f_dbg; | 
					
						
							|  |  |  |     conf->p_dbg      = p_dbg; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_set_bio(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                          void *p_bio, | 
					
						
							|  |  |  |                          mbedtls_ssl_send_t *f_send, | 
					
						
							|  |  |  |                          mbedtls_ssl_recv_t *f_recv, | 
					
						
							|  |  |  |                          mbedtls_ssl_recv_timeout_t *f_recv_timeout) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     ssl->p_bio          = p_bio; | 
					
						
							|  |  |  |     ssl->f_send         = f_send; | 
					
						
							|  |  |  |     ssl->f_recv         = f_recv; | 
					
						
							|  |  |  |     ssl->f_recv_timeout = f_recv_timeout; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_set_mtu(mbedtls_ssl_context *ssl, uint16_t mtu) | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     ssl->mtu = mtu; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_read_timeout(mbedtls_ssl_config *conf, uint32_t timeout) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->read_timeout   = timeout; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_set_timer_cb(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                               void *p_timer, | 
					
						
							|  |  |  |                               mbedtls_ssl_set_timer_t *f_set_timer, | 
					
						
							|  |  |  |                               mbedtls_ssl_get_timer_t *f_get_timer) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     ssl->p_timer        = p_timer; | 
					
						
							|  |  |  |     ssl->f_set_timer    = f_set_timer; | 
					
						
							|  |  |  |     ssl->f_get_timer    = f_get_timer; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Make sure we start with no timer running */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ssl_set_timer(ssl, 0); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_session_cache(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                                     void *p_cache, | 
					
						
							|  |  |  |                                     int (*f_get_cache)(void *, mbedtls_ssl_session *), | 
					
						
							|  |  |  |                                     int (*f_set_cache)(void *, const mbedtls_ssl_session *)) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->p_cache = p_cache; | 
					
						
							|  |  |  |     conf->f_get_cache = f_get_cache; | 
					
						
							|  |  |  |     conf->f_set_cache = f_set_cache; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_SRV_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_set_session(mbedtls_ssl_context *ssl, const mbedtls_ssl_session *session) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl == NULL || | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         session == NULL || | 
					
						
							|  |  |  |         ssl->session_negotiate == NULL || | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ssl->conf->endpoint != MBEDTLS_SSL_IS_CLIENT) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_ssl_session_copy(ssl->session_negotiate, | 
					
						
							|  |  |  |                                         session)) != 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ssl->handshake->resume = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_CLI_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_ciphersuites(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                                    const int *ciphersuites) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->ciphersuite_list[MBEDTLS_SSL_MINOR_VERSION_0] = ciphersuites; | 
					
						
							|  |  |  |     conf->ciphersuite_list[MBEDTLS_SSL_MINOR_VERSION_1] = ciphersuites; | 
					
						
							|  |  |  |     conf->ciphersuite_list[MBEDTLS_SSL_MINOR_VERSION_2] = ciphersuites; | 
					
						
							|  |  |  |     conf->ciphersuite_list[MBEDTLS_SSL_MINOR_VERSION_3] = ciphersuites; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_ciphersuites_for_version(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                                                const int *ciphersuites, | 
					
						
							|  |  |  |                                                int major, int minor) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (major != MBEDTLS_SSL_MAJOR_VERSION_3) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (minor < MBEDTLS_SSL_MINOR_VERSION_0 || minor > MBEDTLS_SSL_MINOR_VERSION_3) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     conf->ciphersuite_list[minor] = ciphersuites; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_cert_profile(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                                    const mbedtls_x509_crt_profile *profile) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->cert_profile = profile; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Append a new keycert entry to a (possibly empty) list */ | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_append_key_cert(mbedtls_ssl_key_cert **head, | 
					
						
							|  |  |  |                                mbedtls_x509_crt *cert, | 
					
						
							|  |  |  |                                mbedtls_pk_context *key) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  |     mbedtls_ssl_key_cert *new_cert; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     new_cert = mbedtls_calloc(1, sizeof(mbedtls_ssl_key_cert)); | 
					
						
							|  |  |  |     if (new_cert == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_ALLOC_FAILED; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  |     new_cert->cert = cert; | 
					
						
							|  |  |  |     new_cert->key  = key; | 
					
						
							|  |  |  |     new_cert->next = NULL; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Update head is the list was null, else add to the end */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (*head == NULL) { | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  |         *head = new_cert; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         mbedtls_ssl_key_cert *cur = *head; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         while (cur->next != NULL) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             cur = cur->next; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  |         cur->next = new_cert; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_conf_own_cert(mbedtls_ssl_config *conf, | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |                               mbedtls_x509_crt *own_cert, | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                               mbedtls_pk_context *pk_key) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ssl_append_key_cert(&conf->key_cert, own_cert, pk_key); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_ca_chain(mbedtls_ssl_config *conf, | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |                                mbedtls_x509_crt *ca_chain, | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                                mbedtls_x509_crl *ca_crl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->ca_chain   = ca_chain; | 
					
						
							|  |  |  |     conf->ca_crl     = ca_crl; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK)
 | 
					
						
							|  |  |  |     /* mbedtls_ssl_conf_ca_chain() and mbedtls_ssl_conf_ca_cb()
 | 
					
						
							|  |  |  |      * cannot be used together. */ | 
					
						
							|  |  |  |     conf->f_ca_cb = NULL; | 
					
						
							|  |  |  |     conf->p_ca_cb = NULL; | 
					
						
							|  |  |  | #endif /* MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK */
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_ca_cb(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                             mbedtls_x509_crt_ca_cb_t f_ca_cb, | 
					
						
							|  |  |  |                             void *p_ca_cb) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->f_ca_cb = f_ca_cb; | 
					
						
							|  |  |  |     conf->p_ca_cb = p_ca_cb; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* mbedtls_ssl_conf_ca_chain() and mbedtls_ssl_conf_ca_cb()
 | 
					
						
							|  |  |  |      * cannot be used together. */ | 
					
						
							|  |  |  |     conf->ca_chain   = NULL; | 
					
						
							|  |  |  |     conf->ca_crl     = NULL; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_X509_CRT_PARSE_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_set_hs_own_cert(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                 mbedtls_x509_crt *own_cert, | 
					
						
							|  |  |  |                                 mbedtls_pk_context *pk_key) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ssl_append_key_cert(&ssl->handshake->sni_key_cert, | 
					
						
							|  |  |  |                                own_cert, pk_key); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_set_hs_ca_chain(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                  mbedtls_x509_crt *ca_chain, | 
					
						
							|  |  |  |                                  mbedtls_x509_crl *ca_crl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     ssl->handshake->sni_ca_chain   = ca_chain; | 
					
						
							|  |  |  |     ssl->handshake->sni_ca_crl     = ca_crl; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_set_hs_authmode(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                  int authmode) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     ssl->handshake->sni_authmode = authmode; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_SERVER_NAME_INDICATION */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_set_verify(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                             int (*f_vrfy)(void *, mbedtls_x509_crt *, int, uint32_t *), | 
					
						
							|  |  |  |                             void *p_vrfy) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     ssl->f_vrfy = f_vrfy; | 
					
						
							|  |  |  |     ssl->p_vrfy = p_vrfy; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Set EC J-PAKE password for current handshake | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_set_hs_ecjpake_password(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                         const unsigned char *pw, | 
					
						
							|  |  |  |                                         size_t pw_len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     mbedtls_ecjpake_role role; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->handshake == NULL || ssl->conf == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->endpoint == MBEDTLS_SSL_IS_SERVER) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         role = MBEDTLS_ECJPAKE_SERVER; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         role = MBEDTLS_ECJPAKE_CLIENT; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return mbedtls_ecjpake_setup(&ssl->handshake->ecjpake_ctx, | 
					
						
							|  |  |  |                                  role, | 
					
						
							|  |  |  |                                  MBEDTLS_MD_SHA256, | 
					
						
							|  |  |  |                                  MBEDTLS_ECP_DP_SECP256R1, | 
					
						
							|  |  |  |                                  pw, pw_len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ssl_conf_remove_psk(mbedtls_ssl_config *conf) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     /* Remove reference to existing PSK, if any. */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (!mbedtls_svc_key_id_is_null(conf->psk_opaque)) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         /* The maintenance of the PSK key slot is the
 | 
					
						
							|  |  |  |          * user's responsibility. */ | 
					
						
							|  |  |  |         conf->psk_opaque = MBEDTLS_SVC_KEY_ID_INIT; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* This and the following branch should never
 | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  |      * be taken simultaneously as we maintain the | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |      * invariant that raw and opaque PSKs are never | 
					
						
							|  |  |  |      * configured simultaneously. As a safeguard, | 
					
						
							|  |  |  |      * though, `else` is omitted here. */ | 
					
						
							|  |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (conf->psk != NULL) { | 
					
						
							|  |  |  |         mbedtls_platform_zeroize(conf->psk, conf->psk_len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_free(conf->psk); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         conf->psk = NULL; | 
					
						
							|  |  |  |         conf->psk_len = 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Remove reference to PSK identity, if any. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (conf->psk_identity != NULL) { | 
					
						
							|  |  |  |         mbedtls_free(conf->psk_identity); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         conf->psk_identity = NULL; | 
					
						
							|  |  |  |         conf->psk_identity_len = 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | /* This function assumes that PSK identity in the SSL config is unset.
 | 
					
						
							|  |  |  |  * It checks that the provided identity is well-formed and attempts | 
					
						
							|  |  |  |  * to make a copy of it in the SSL config. | 
					
						
							|  |  |  |  * On failure, the PSK identity in the config remains unset. */ | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_conf_set_psk_identity(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                                      unsigned char const *psk_identity, | 
					
						
							|  |  |  |                                      size_t psk_identity_len) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     /* Identity len will be encoded on two bytes */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (psk_identity               == NULL || | 
					
						
							|  |  |  |         (psk_identity_len >> 16) != 0    || | 
					
						
							|  |  |  |         psk_identity_len > MBEDTLS_SSL_OUT_CONTENT_LEN) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     conf->psk_identity = mbedtls_calloc(1, psk_identity_len); | 
					
						
							|  |  |  |     if (conf->psk_identity == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_ALLOC_FAILED; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     conf->psk_identity_len = psk_identity_len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(conf->psk_identity, psk_identity, conf->psk_identity_len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_conf_psk(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                          const unsigned char *psk, size_t psk_len, | 
					
						
							|  |  |  |                          const unsigned char *psk_identity, size_t psk_identity_len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							|  |  |  |     /* Remove opaque/raw PSK + PSK Identity */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ssl_conf_remove_psk(conf); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* Check and set raw PSK */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (psk == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (psk_len == 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (psk_len > MBEDTLS_PSK_MAX_LEN) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((conf->psk = mbedtls_calloc(1, psk_len)) == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_ALLOC_FAILED; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     conf->psk_len = psk_len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(conf->psk, psk, conf->psk_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Check and set PSK Identity */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = ssl_conf_set_psk_identity(conf, psk_identity, psk_identity_len); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         ssl_conf_remove_psk(conf); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ssl_remove_psk(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (!mbedtls_svc_key_id_is_null(ssl->handshake->psk_opaque)) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ssl->handshake->psk_opaque = MBEDTLS_SVC_KEY_ID_INIT; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->handshake->psk != NULL) { | 
					
						
							|  |  |  |         mbedtls_platform_zeroize(ssl->handshake->psk, | 
					
						
							|  |  |  |                                  ssl->handshake->psk_len); | 
					
						
							|  |  |  |         mbedtls_free(ssl->handshake->psk); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ssl->handshake->psk_len = 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_set_hs_psk(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                            const unsigned char *psk, size_t psk_len) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (psk == NULL || ssl->handshake == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (psk_len > MBEDTLS_PSK_MAX_LEN) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ssl_remove_psk(ssl); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ssl->handshake->psk = mbedtls_calloc(1, psk_len)) == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_ALLOC_FAILED; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ssl->handshake->psk_len = psk_len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(ssl->handshake->psk, psk, ssl->handshake->psk_len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_conf_psk_opaque(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                                 psa_key_id_t psk, | 
					
						
							|  |  |  |                                 const unsigned char *psk_identity, | 
					
						
							|  |  |  |                                 size_t psk_identity_len) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							|  |  |  |     /* Clear opaque/raw PSK + PSK Identity, if present. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ssl_conf_remove_psk(conf); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Check and set opaque PSK */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_svc_key_id_is_null(psk)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     conf->psk_opaque = psk; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Check and set PSK Identity */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = ssl_conf_set_psk_identity(conf, psk_identity, | 
					
						
							|  |  |  |                                     psk_identity_len); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         ssl_conf_remove_psk(conf); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_set_hs_psk_opaque(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                   psa_key_id_t psk) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((mbedtls_svc_key_id_is_null(psk)) || | 
					
						
							|  |  |  |         (ssl->handshake == NULL)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ssl_remove_psk(ssl); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     ssl->handshake->psk_opaque = psk; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_psk_cb(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                              int (*f_psk)(void *, mbedtls_ssl_context *, const unsigned char *, | 
					
						
							|  |  |  |                                           size_t), | 
					
						
							|  |  |  |                              void *p_psk) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->f_psk = f_psk; | 
					
						
							|  |  |  |     conf->p_psk = p_psk; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_DEPRECATED_REMOVED)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_conf_dh_param(mbedtls_ssl_config *conf, const char *dhm_P, const char *dhm_G) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_mpi_read_string(&conf->dhm_P, 16, dhm_P)) != 0 || | 
					
						
							|  |  |  |         (ret = mbedtls_mpi_read_string(&conf->dhm_G, 16, dhm_G)) != 0) { | 
					
						
							|  |  |  |         mbedtls_mpi_free(&conf->dhm_P); | 
					
						
							|  |  |  |         mbedtls_mpi_free(&conf->dhm_G); | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_DEPRECATED_REMOVED */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_conf_dh_param_bin(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                                   const unsigned char *dhm_P, size_t P_len, | 
					
						
							|  |  |  |                                   const unsigned char *dhm_G, size_t G_len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_free(&conf->dhm_P); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&conf->dhm_G); | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_mpi_read_binary(&conf->dhm_P, dhm_P, P_len)) != 0 || | 
					
						
							|  |  |  |         (ret = mbedtls_mpi_read_binary(&conf->dhm_G, dhm_G, G_len)) != 0) { | 
					
						
							|  |  |  |         mbedtls_mpi_free(&conf->dhm_P); | 
					
						
							|  |  |  |         mbedtls_mpi_free(&conf->dhm_G); | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_conf_dh_param_ctx(mbedtls_ssl_config *conf, mbedtls_dhm_context *dhm_ctx) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_free(&conf->dhm_P); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&conf->dhm_G); | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_mpi_copy(&conf->dhm_P, &dhm_ctx->P)) != 0 || | 
					
						
							|  |  |  |         (ret = mbedtls_mpi_copy(&conf->dhm_G, &dhm_ctx->G)) != 0) { | 
					
						
							|  |  |  |         mbedtls_mpi_free(&conf->dhm_P); | 
					
						
							|  |  |  |         mbedtls_mpi_free(&conf->dhm_G); | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_DHM_C && MBEDTLS_SSL_SRV_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Set the minimum length for Diffie-Hellman parameters | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_dhm_min_bitlen(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                                      unsigned int bitlen) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->dhm_min_bitlen = bitlen; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_DHM_C && MBEDTLS_SSL_CLI_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Set allowed/preferred hashes for handshake signatures | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_sig_hashes(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                                  const int *hashes) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->sig_hashes = hashes; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECP_C)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Set the allowed elliptic curves | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_curves(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                              const mbedtls_ecp_group_id *curve_list) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->curve_list = curve_list; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_ECP_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_set_hostname(mbedtls_ssl_context *ssl, const char *hostname) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     /* Initialize to suppress unnecessary compiler warning */ | 
					
						
							|  |  |  |     size_t hostname_len = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Check if new hostname is valid before
 | 
					
						
							|  |  |  |      * making any change to current one */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (hostname != NULL) { | 
					
						
							|  |  |  |         hostname_len = strlen(hostname); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (hostname_len > MBEDTLS_SSL_MAX_HOST_NAME_LEN) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Now it's clear that we will overwrite the old hostname,
 | 
					
						
							|  |  |  |      * so we can free it safely */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->hostname != NULL) { | 
					
						
							|  |  |  |         mbedtls_platform_zeroize(ssl->hostname, strlen(ssl->hostname)); | 
					
						
							|  |  |  |         mbedtls_free(ssl->hostname); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Passing NULL as hostname shall clear the old one */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (hostname == NULL) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ssl->hostname = NULL; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         ssl->hostname = mbedtls_calloc(1, hostname_len + 1); | 
					
						
							|  |  |  |         if (ssl->hostname == NULL) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_ALLOC_FAILED; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         memcpy(ssl->hostname, hostname, hostname_len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         ssl->hostname[hostname_len] = '\0'; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_X509_CRT_PARSE_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_sni(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                           int (*f_sni)(void *, mbedtls_ssl_context *, | 
					
						
							|  |  |  |                                        const unsigned char *, size_t), | 
					
						
							|  |  |  |                           void *p_sni) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->f_sni = f_sni; | 
					
						
							|  |  |  |     conf->p_sni = p_sni; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_SERVER_NAME_INDICATION */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_ALPN)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_conf_alpn_protocols(mbedtls_ssl_config *conf, const char **protos) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     size_t cur_len, tot_len; | 
					
						
							|  |  |  |     const char **p; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * RFC 7301 3.1: "Empty strings MUST NOT be included and byte strings | 
					
						
							|  |  |  |      * MUST NOT be truncated." | 
					
						
							|  |  |  |      * We check lengths now rather than later. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     tot_len = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     for (p = protos; *p != NULL; p++) { | 
					
						
							|  |  |  |         cur_len = strlen(*p); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         tot_len += cur_len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((cur_len == 0) || | 
					
						
							|  |  |  |             (cur_len > MBEDTLS_SSL_MAX_ALPN_NAME_LEN) || | 
					
						
							|  |  |  |             (tot_len > MBEDTLS_SSL_MAX_ALPN_LIST_LEN)) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     conf->alpn_list = protos; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | const char *mbedtls_ssl_get_alpn_protocol(const mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ssl->alpn_chosen; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_ALPN */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_DTLS_SRTP)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_srtp_mki_value_supported(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                                                int support_mki_value) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->dtls_srtp_mki_support = support_mki_value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_dtls_srtp_set_mki_value(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                         unsigned char *mki_value, | 
					
						
							|  |  |  |                                         uint16_t mki_len) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mki_len > MBEDTLS_TLS_SRTP_MAX_MKI_LENGTH) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->dtls_srtp_mki_support == MBEDTLS_SSL_DTLS_SRTP_MKI_UNSUPPORTED) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(ssl->dtls_srtp_info.mki_value, mki_value, mki_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     ssl->dtls_srtp_info.mki_len = mki_len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_conf_dtls_srtp_protection_profiles(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                                                    const mbedtls_ssl_srtp_profile *profiles) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     const mbedtls_ssl_srtp_profile *p; | 
					
						
							|  |  |  |     size_t list_size = 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* check the profiles list: all entry must be valid,
 | 
					
						
							|  |  |  |      * its size cannot be more than the total number of supported profiles, currently 4 */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     for (p = profiles; *p != MBEDTLS_TLS_SRTP_UNSET && | 
					
						
							|  |  |  |          list_size <= MBEDTLS_TLS_SRTP_MAX_PROFILE_LIST_LENGTH; | 
					
						
							|  |  |  |          p++) { | 
					
						
							|  |  |  |         if (mbedtls_ssl_check_srtp_profile_value(*p) != MBEDTLS_TLS_SRTP_UNSET) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             list_size++; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             /* unsupported value, stop parsing and set the size to an error value */ | 
					
						
							|  |  |  |             list_size = MBEDTLS_TLS_SRTP_MAX_PROFILE_LIST_LENGTH + 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (list_size > MBEDTLS_TLS_SRTP_MAX_PROFILE_LIST_LENGTH) { | 
					
						
							|  |  |  |         conf->dtls_srtp_profile_list = NULL; | 
					
						
							|  |  |  |         conf->dtls_srtp_profile_list_len = 0; | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     conf->dtls_srtp_profile_list = profiles; | 
					
						
							|  |  |  |     conf->dtls_srtp_profile_list_len = list_size; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_get_dtls_srtp_negotiation_result(const mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                                   mbedtls_dtls_srtp_info *dtls_srtp_info) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     dtls_srtp_info->chosen_dtls_srtp_profile = ssl->dtls_srtp_info.chosen_dtls_srtp_profile; | 
					
						
							|  |  |  |     /* do not copy the mki value if there is no chosen profile */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (dtls_srtp_info->chosen_dtls_srtp_profile == MBEDTLS_TLS_SRTP_UNSET) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         dtls_srtp_info->mki_len = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         dtls_srtp_info->mki_len = ssl->dtls_srtp_info.mki_len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         memcpy(dtls_srtp_info->mki_value, ssl->dtls_srtp_info.mki_value, | 
					
						
							|  |  |  |                ssl->dtls_srtp_info.mki_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_DTLS_SRTP */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_max_version(mbedtls_ssl_config *conf, int major, int minor) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->max_major_ver = major; | 
					
						
							|  |  |  |     conf->max_minor_ver = minor; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_min_version(mbedtls_ssl_config *conf, int major, int minor) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->min_major_ver = major; | 
					
						
							|  |  |  |     conf->min_minor_ver = minor; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_FALLBACK_SCSV) && defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_fallback(mbedtls_ssl_config *conf, char fallback) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->fallback = fallback; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_cert_req_ca_list(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                                        char cert_req_ca_list) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->cert_req_ca_list = cert_req_ca_list; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_encrypt_then_mac(mbedtls_ssl_config *conf, char etm) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->encrypt_then_mac = etm; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_extended_master_secret(mbedtls_ssl_config *conf, char ems) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->extended_ms = ems; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ARC4_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_arc4_support(mbedtls_ssl_config *conf, char arc4) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->arc4_disabled = arc4; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_conf_max_frag_len(mbedtls_ssl_config *conf, unsigned char mfl_code) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mfl_code >= MBEDTLS_SSL_MAX_FRAG_LEN_INVALID || | 
					
						
							|  |  |  |         ssl_mfl_code_to_length(mfl_code) > MBEDTLS_TLS_EXT_ADV_CONTENT_LEN) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     conf->mfl_code = mfl_code; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_MAX_FRAGMENT_LENGTH */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_truncated_hmac(mbedtls_ssl_config *conf, int truncate) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->trunc_hmac = truncate; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_TRUNCATED_HMAC */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_CBC_RECORD_SPLITTING)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_cbc_record_splitting(mbedtls_ssl_config *conf, char split) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->cbc_record_splitting = split; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_legacy_renegotiation(mbedtls_ssl_config *conf, int allow_legacy) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->allow_legacy_renegotiation = allow_legacy; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_RENEGOTIATION)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_renegotiation(mbedtls_ssl_config *conf, int renegotiation) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->disable_renegotiation = renegotiation; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_renegotiation_enforced(mbedtls_ssl_config *conf, int max_records) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->renego_max_records = max_records; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_renegotiation_period(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                                            const unsigned char period[8]) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(conf->renego_period, period, 8); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_RENEGOTIATION */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SESSION_TICKETS)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_session_tickets(mbedtls_ssl_config *conf, int use_tickets) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->session_tickets = use_tickets; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_session_tickets_cb(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                                          mbedtls_ssl_ticket_write_t *f_ticket_write, | 
					
						
							|  |  |  |                                          mbedtls_ssl_ticket_parse_t *f_ticket_parse, | 
					
						
							|  |  |  |                                          void *p_ticket) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->f_ticket_write = f_ticket_write; | 
					
						
							|  |  |  |     conf->f_ticket_parse = f_ticket_parse; | 
					
						
							|  |  |  |     conf->p_ticket       = p_ticket; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_SESSION_TICKETS */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_EXPORT_KEYS)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_export_keys_cb(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                                      mbedtls_ssl_export_keys_t *f_export_keys, | 
					
						
							|  |  |  |                                      void *p_export_keys) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->f_export_keys = f_export_keys; | 
					
						
							|  |  |  |     conf->p_export_keys = p_export_keys; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_conf_export_keys_ext_cb(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                                          mbedtls_ssl_export_keys_ext_t *f_export_keys_ext, | 
					
						
							|  |  |  |                                          void *p_export_keys) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->f_export_keys_ext = f_export_keys_ext; | 
					
						
							|  |  |  |     conf->p_export_keys = p_export_keys; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  | #if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
 | 
					
						
							|  |  |  | void mbedtls_ssl_conf_async_private_cb( | 
					
						
							|  |  |  |     mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |     mbedtls_ssl_async_sign_t *f_async_sign, | 
					
						
							|  |  |  |     mbedtls_ssl_async_decrypt_t *f_async_decrypt, | 
					
						
							|  |  |  |     mbedtls_ssl_async_resume_t *f_async_resume, | 
					
						
							|  |  |  |     mbedtls_ssl_async_cancel_t *f_async_cancel, | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     void *async_config_data) | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     conf->f_async_sign_start = f_async_sign; | 
					
						
							|  |  |  |     conf->f_async_decrypt_start = f_async_decrypt; | 
					
						
							|  |  |  |     conf->f_async_resume = f_async_resume; | 
					
						
							|  |  |  |     conf->f_async_cancel = f_async_cancel; | 
					
						
							|  |  |  |     conf->p_async_config_data = async_config_data; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void *mbedtls_ssl_conf_get_async_config_data(const mbedtls_ssl_config *conf) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return conf->p_async_config_data; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void *mbedtls_ssl_get_async_operation_data(const mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->handshake == NULL) { | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         return ssl->handshake->user_async_ctx; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_set_async_operation_data(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                           void *ctx) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->handshake != NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ssl->handshake->user_async_ctx = ctx; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * SSL get accessors | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | uint32_t mbedtls_ssl_get_verify_result(const mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->session != NULL) { | 
					
						
							|  |  |  |         return ssl->session->verify_result; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->session_negotiate != NULL) { | 
					
						
							|  |  |  |         return ssl->session_negotiate->verify_result; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0xFFFFFFFF; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | const char *mbedtls_ssl_get_ciphersuite(const mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl == NULL || ssl->session == NULL) { | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return mbedtls_ssl_get_ciphersuite_name(ssl->session->ciphersuite); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | const char *mbedtls_ssl_get_version(const mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM) { | 
					
						
							|  |  |  |         switch (ssl->minor_ver) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             case MBEDTLS_SSL_MINOR_VERSION_2: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                 return "DTLSv1.0"; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |             case MBEDTLS_SSL_MINOR_VERSION_3: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                 return "DTLSv1.2"; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |             default: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                 return "unknown (DTLS)"; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     switch (ssl->minor_ver) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         case MBEDTLS_SSL_MINOR_VERSION_0: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return "SSLv3.0"; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         case MBEDTLS_SSL_MINOR_VERSION_1: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return "TLSv1.0"; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         case MBEDTLS_SSL_MINOR_VERSION_2: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return "TLSv1.1"; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         case MBEDTLS_SSL_MINOR_VERSION_3: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return "TLSv1.2"; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return "unknown"; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | size_t mbedtls_ssl_get_input_max_frag_len(const mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     size_t max_len = MBEDTLS_SSL_MAX_CONTENT_LEN; | 
					
						
							|  |  |  |     size_t read_mfl; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Use the configured MFL for the client if we're past SERVER_HELLO_DONE */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->endpoint == MBEDTLS_SSL_IS_CLIENT && | 
					
						
							|  |  |  |         ssl->state >= MBEDTLS_SSL_SERVER_HELLO_DONE) { | 
					
						
							|  |  |  |         return ssl_mfl_code_to_length(ssl->conf->mfl_code); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Check if a smaller max length was negotiated */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->session_out != NULL) { | 
					
						
							|  |  |  |         read_mfl = ssl_mfl_code_to_length(ssl->session_out->mfl_code); | 
					
						
							|  |  |  |         if (read_mfl < max_len) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             max_len = read_mfl; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // During a handshake, use the value being negotiated
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->session_negotiate != NULL) { | 
					
						
							|  |  |  |         read_mfl = ssl_mfl_code_to_length(ssl->session_negotiate->mfl_code); | 
					
						
							|  |  |  |         if (read_mfl < max_len) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             max_len = read_mfl; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return max_len; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | size_t mbedtls_ssl_get_output_max_frag_len(const mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     size_t max_len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Assume mfl_code is correct since it was checked when set | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     max_len = ssl_mfl_code_to_length(ssl->conf->mfl_code); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Check if a smaller max length was negotiated */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->session_out != NULL && | 
					
						
							|  |  |  |         ssl_mfl_code_to_length(ssl->session_out->mfl_code) < max_len) { | 
					
						
							|  |  |  |         max_len = ssl_mfl_code_to_length(ssl->session_out->mfl_code); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* During a handshake, use the value being negotiated */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->session_negotiate != NULL && | 
					
						
							|  |  |  |         ssl_mfl_code_to_length(ssl->session_negotiate->mfl_code) < max_len) { | 
					
						
							|  |  |  |         max_len = ssl_mfl_code_to_length(ssl->session_negotiate->mfl_code); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return max_len; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_DEPRECATED_REMOVED)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | size_t mbedtls_ssl_get_max_frag_len(const mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return mbedtls_ssl_get_output_max_frag_len(ssl); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* !MBEDTLS_DEPRECATED_REMOVED */
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_MAX_FRAGMENT_LENGTH */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | size_t mbedtls_ssl_get_current_mtu(const mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     /* Return unlimited mtu for client hello messages to avoid fragmentation. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->endpoint == MBEDTLS_SSL_IS_CLIENT && | 
					
						
							|  |  |  |         (ssl->state == MBEDTLS_SSL_CLIENT_HELLO || | 
					
						
							|  |  |  |          ssl->state == MBEDTLS_SSL_SERVER_HELLO)) { | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->handshake == NULL || ssl->handshake->mtu == 0) { | 
					
						
							|  |  |  |         return ssl->mtu; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->mtu == 0) { | 
					
						
							|  |  |  |         return ssl->handshake->mtu; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ssl->mtu < ssl->handshake->mtu ? | 
					
						
							|  |  |  |            ssl->mtu : ssl->handshake->mtu; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_DTLS */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_get_max_out_record_payload(const mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     size_t max_len = MBEDTLS_SSL_OUT_CONTENT_LEN; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH) && \
 | 
					
						
							|  |  |  |     !defined(MBEDTLS_SSL_PROTO_DTLS) | 
					
						
							|  |  |  |     (void) ssl; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     const size_t mfl = mbedtls_ssl_get_output_max_frag_len(ssl); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (max_len > mfl) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         max_len = mfl; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_ssl_get_current_mtu(ssl) != 0) { | 
					
						
							|  |  |  |         const size_t mtu = mbedtls_ssl_get_current_mtu(ssl); | 
					
						
							|  |  |  |         const int ret = mbedtls_ssl_get_record_expansion(ssl); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         const size_t overhead = (size_t) ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (ret < 0) { | 
					
						
							|  |  |  |             return ret; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (mtu <= overhead) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_MSG(1, ("MTU too low for record expansion")); | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (max_len > mtu - overhead) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             max_len = mtu - overhead; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_DTLS */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH) &&        \
 | 
					
						
							|  |  |  |     !defined(MBEDTLS_SSL_PROTO_DTLS) | 
					
						
							|  |  |  |     ((void) ssl); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return (int) max_len; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | const mbedtls_x509_crt *mbedtls_ssl_get_peer_cert(const mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl == NULL || ssl->session == NULL) { | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ssl->session->peer_cert; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_X509_CRT_PARSE_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_get_session(const mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                             mbedtls_ssl_session *dst) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl == NULL || | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         dst == NULL || | 
					
						
							|  |  |  |         ssl->session == NULL || | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ssl->conf->endpoint != MBEDTLS_SSL_IS_CLIENT) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return mbedtls_ssl_session_copy(dst, ssl->session); | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_CLI_C */
 | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | const mbedtls_ssl_session *mbedtls_ssl_get_session_pointer(const mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl == NULL) { | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ssl->session; | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |  * Define ticket header determining Mbed TLS version | 
					
						
							|  |  |  |  * and structure of the ticket. | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Define bitflag determining compile-time settings influencing | 
					
						
							|  |  |  |  * structure of serialized SSL sessions. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_HAVE_TIME)
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_TIME 1
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_TIME 0
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_HAVE_TIME */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_CRT 1
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_CRT 0
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_X509_CRT_PARSE_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_CLI_C) && defined(MBEDTLS_SSL_SESSION_TICKETS)
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_CLIENT_TICKET 1
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_CLIENT_TICKET 0
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_CLI_C && MBEDTLS_SSL_SESSION_TICKETS */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_MFL 1
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_MFL 0
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_MAX_FRAGMENT_LENGTH */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_TRUNC_HMAC 1
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_TRUNC_HMAC 0
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_TRUNCATED_HMAC */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_ETM 1
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_ETM 0
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_ENCRYPT_THEN_MAC */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SESSION_TICKETS)
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_TICKET 1
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_TICKET 0
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_SESSION_TICKETS */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_TIME_BIT          0
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_CRT_BIT           1
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_CLIENT_TICKET_BIT 2
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_MFL_BIT           3
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_TRUNC_HMAC_BIT    4
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_ETM_BIT           5
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_TICKET_BIT        6
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_SESSION_CONFIG_BITFLAG                           \
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ((uint16_t) (                                                      \ | 
					
						
							|  |  |  |          (SSL_SERIALIZED_SESSION_CONFIG_TIME << SSL_SERIALIZED_SESSION_CONFIG_TIME_BIT) | \ | 
					
						
							|  |  |  |          (SSL_SERIALIZED_SESSION_CONFIG_CRT << SSL_SERIALIZED_SESSION_CONFIG_CRT_BIT) | \ | 
					
						
							|  |  |  |          (SSL_SERIALIZED_SESSION_CONFIG_CLIENT_TICKET << \ | 
					
						
							|  |  |  |              SSL_SERIALIZED_SESSION_CONFIG_CLIENT_TICKET_BIT) | \ | 
					
						
							|  |  |  |          (SSL_SERIALIZED_SESSION_CONFIG_MFL << SSL_SERIALIZED_SESSION_CONFIG_MFL_BIT) | \ | 
					
						
							|  |  |  |          (SSL_SERIALIZED_SESSION_CONFIG_TRUNC_HMAC << \ | 
					
						
							|  |  |  |              SSL_SERIALIZED_SESSION_CONFIG_TRUNC_HMAC_BIT) | \ | 
					
						
							|  |  |  |          (SSL_SERIALIZED_SESSION_CONFIG_ETM << SSL_SERIALIZED_SESSION_CONFIG_ETM_BIT) | \ | 
					
						
							|  |  |  |          (SSL_SERIALIZED_SESSION_CONFIG_TICKET << SSL_SERIALIZED_SESSION_CONFIG_TICKET_BIT))) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | static unsigned char ssl_serialized_session_header[] = { | 
					
						
							|  |  |  |     MBEDTLS_VERSION_MAJOR, | 
					
						
							|  |  |  |     MBEDTLS_VERSION_MINOR, | 
					
						
							|  |  |  |     MBEDTLS_VERSION_PATCH, | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_BYTE_1(SSL_SERIALIZED_SESSION_CONFIG_BITFLAG), | 
					
						
							|  |  |  |     MBEDTLS_BYTE_0(SSL_SERIALIZED_SESSION_CONFIG_BITFLAG), | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Serialize a session in the following format: | 
					
						
							|  |  |  |  * (in the presentation language of TLS, RFC 8446 section 3) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  opaque mbedtls_version[3];   // major, minor, patch
 | 
					
						
							|  |  |  |  *  opaque session_format[2];    // version-specific 16-bit field determining
 | 
					
						
							|  |  |  |  *                               // the format of the remaining
 | 
					
						
							|  |  |  |  *                               // serialized data.
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Note: When updating the format, remember to keep | 
					
						
							|  |  |  |  *        these version+format bytes. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *                               // In this version, `session_format` determines
 | 
					
						
							|  |  |  |  *                               // the setting of those compile-time
 | 
					
						
							|  |  |  |  *                               // configuration options which influence
 | 
					
						
							|  |  |  |  *                               // the structure of mbedtls_ssl_session.
 | 
					
						
							|  |  |  |  *  uint64 start_time; | 
					
						
							|  |  |  |  *  uint8 ciphersuite[2];        // defined by the standard
 | 
					
						
							|  |  |  |  *  uint8 compression;           // 0 or 1
 | 
					
						
							|  |  |  |  *  uint8 session_id_len;        // at most 32
 | 
					
						
							|  |  |  |  *  opaque session_id[32]; | 
					
						
							|  |  |  |  *  opaque master[48];           // fixed length in the standard
 | 
					
						
							|  |  |  |  *  uint32 verify_result; | 
					
						
							|  |  |  |  *  opaque peer_cert<0..2^24-1>; // length 0 means no peer cert
 | 
					
						
							|  |  |  |  *  opaque ticket<0..2^24-1>;    // length 0 means no ticket
 | 
					
						
							|  |  |  |  *  uint32 ticket_lifetime; | 
					
						
							|  |  |  |  *  uint8 mfl_code;              // up to 255 according to standard
 | 
					
						
							|  |  |  |  *  uint8 trunc_hmac;            // 0 or 1
 | 
					
						
							|  |  |  |  *  uint8 encrypt_then_mac;      // 0 or 1
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The order is the same as in the definition of the structure, except | 
					
						
							|  |  |  |  * verify_result is put before peer_cert so that all mandatory fields come | 
					
						
							|  |  |  |  * together in one block. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_session_save(const mbedtls_ssl_session *session, | 
					
						
							|  |  |  |                             unsigned char omit_header, | 
					
						
							|  |  |  |                             unsigned char *buf, | 
					
						
							|  |  |  |                             size_t buf_len, | 
					
						
							|  |  |  |                             size_t *olen) | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     unsigned char *p = buf; | 
					
						
							|  |  |  |     size_t used = 0; | 
					
						
							|  |  |  | #if defined(MBEDTLS_HAVE_TIME)
 | 
					
						
							|  |  |  |     uint64_t start; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
 | 
					
						
							|  |  |  |     size_t cert_len; | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_X509_CRT_PARSE_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (!omit_header) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * Add version identifier | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         used += sizeof(ssl_serialized_session_header); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (used <= buf_len) { | 
					
						
							|  |  |  |             memcpy(p, ssl_serialized_session_header, | 
					
						
							|  |  |  |                    sizeof(ssl_serialized_session_header)); | 
					
						
							|  |  |  |             p += sizeof(ssl_serialized_session_header); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |      * Time | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_HAVE_TIME)
 | 
					
						
							|  |  |  |     used += 8; | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (used <= buf_len) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         start = (uint64_t) session->start; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_PUT_UINT64_BE(start, p, 0); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += 8; | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_HAVE_TIME */
 | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |      * Basic mandatory fields | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     used += 2   /* ciphersuite */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             + 1 /* compression */ | 
					
						
							|  |  |  |             + 1 /* id_len */ | 
					
						
							|  |  |  |             + sizeof(session->id) | 
					
						
							|  |  |  |             + sizeof(session->master) | 
					
						
							|  |  |  |             + 4; /* verify_result */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (used <= buf_len) { | 
					
						
							|  |  |  |         MBEDTLS_PUT_UINT16_BE(session->ciphersuite, p, 0); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += 2; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         *p++ = MBEDTLS_BYTE_0(session->compression); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         *p++ = MBEDTLS_BYTE_0(session->id_len); | 
					
						
							|  |  |  |         memcpy(p, session->id, 32); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += 32; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         memcpy(p, session->master, 48); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += 48; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_PUT_UINT32_BE(session->verify_result, p, 0); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += 4; | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |      * Peer's end-entity certificate | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (session->peer_cert == NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         cert_len = 0; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         cert_len = session->peer_cert->raw.len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     used += 3 + cert_len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (used <= buf_len) { | 
					
						
							|  |  |  |         *p++ = MBEDTLS_BYTE_2(cert_len); | 
					
						
							|  |  |  |         *p++ = MBEDTLS_BYTE_1(cert_len); | 
					
						
							|  |  |  |         *p++ = MBEDTLS_BYTE_0(cert_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (session->peer_cert != NULL) { | 
					
						
							|  |  |  |             memcpy(p, session->peer_cert->raw.p, cert_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             p += cert_len; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #else /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (session->peer_cert_digest != NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         used += 1 /* type */ + 1 /* length */ + session->peer_cert_digest_len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (used <= buf_len) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             *p++ = (unsigned char) session->peer_cert_digest_type; | 
					
						
							|  |  |  |             *p++ = (unsigned char) session->peer_cert_digest_len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             memcpy(p, session->peer_cert_digest, | 
					
						
							|  |  |  |                    session->peer_cert_digest_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             p += session->peer_cert_digest_len; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         used += 2; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (used <= buf_len) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             *p++ = (unsigned char) MBEDTLS_MD_NONE; | 
					
						
							|  |  |  |             *p++ = 0; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* !MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_X509_CRT_PARSE_C */
 | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |      * Session ticket if any, plus associated data | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_SESSION_TICKETS) && defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							|  |  |  |     used += 3 + session->ticket_len + 4; /* len + ticket + lifetime */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (used <= buf_len) { | 
					
						
							|  |  |  |         *p++ = MBEDTLS_BYTE_2(session->ticket_len); | 
					
						
							|  |  |  |         *p++ = MBEDTLS_BYTE_1(session->ticket_len); | 
					
						
							|  |  |  |         *p++ = MBEDTLS_BYTE_0(session->ticket_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (session->ticket != NULL) { | 
					
						
							|  |  |  |             memcpy(p, session->ticket, session->ticket_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             p += session->ticket_len; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_PUT_UINT32_BE(session->ticket_lifetime, p, 0); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += 4; | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_SESSION_TICKETS && MBEDTLS_SSL_CLI_C */
 | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |      * Misc extension-related info | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
 | 
					
						
							|  |  |  |     used += 1; | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (used <= buf_len) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         *p++ = session->mfl_code; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
 | 
					
						
							|  |  |  |     used += 1; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (used <= buf_len) { | 
					
						
							|  |  |  |         *p++ = (unsigned char) ((session->trunc_hmac) & 0xFF); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
 | 
					
						
							|  |  |  |     used += 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (used <= buf_len) { | 
					
						
							|  |  |  |         *p++ = MBEDTLS_BYTE_0(session->encrypt_then_mac); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Done */ | 
					
						
							|  |  |  |     *olen = used; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (used > buf_len) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Public wrapper for ssl_session_save() | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_session_save(const mbedtls_ssl_session *session, | 
					
						
							|  |  |  |                              unsigned char *buf, | 
					
						
							|  |  |  |                              size_t buf_len, | 
					
						
							|  |  |  |                              size_t *olen) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ssl_session_save(session, 0, buf, buf_len, olen); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Deserialize session, see mbedtls_ssl_session_save() for format. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This internal version is wrapped by a public function that cleans up in | 
					
						
							|  |  |  |  * case of error, and has an extra option omit_header. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_session_load(mbedtls_ssl_session *session, | 
					
						
							|  |  |  |                             unsigned char omit_header, | 
					
						
							|  |  |  |                             const unsigned char *buf, | 
					
						
							|  |  |  |                             size_t len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     const unsigned char *p = buf; | 
					
						
							|  |  |  |     const unsigned char * const end = buf + len; | 
					
						
							|  |  |  | #if defined(MBEDTLS_HAVE_TIME)
 | 
					
						
							|  |  |  |     uint64_t start; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
 | 
					
						
							|  |  |  |     size_t cert_len; | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_X509_CRT_PARSE_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (!omit_header) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * Check version identifier | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((size_t) (end - p) < sizeof(ssl_serialized_session_header)) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (memcmp(p, ssl_serialized_session_header, | 
					
						
							|  |  |  |                    sizeof(ssl_serialized_session_header)) != 0) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_VERSION_MISMATCH; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         p += sizeof(ssl_serialized_session_header); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Time | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_HAVE_TIME)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (8 > (size_t) (end - p)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     start = ((uint64_t) p[0] << 56) | | 
					
						
							|  |  |  |             ((uint64_t) p[1] << 48) | | 
					
						
							|  |  |  |             ((uint64_t) p[2] << 40) | | 
					
						
							|  |  |  |             ((uint64_t) p[3] << 32) | | 
					
						
							|  |  |  |             ((uint64_t) p[4] << 24) | | 
					
						
							|  |  |  |             ((uint64_t) p[5] << 16) | | 
					
						
							|  |  |  |             ((uint64_t) p[6] <<  8) | | 
					
						
							|  |  |  |             ((uint64_t) p[7]); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     p += 8; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     session->start = (time_t) start; | 
					
						
							|  |  |  | #endif /* MBEDTLS_HAVE_TIME */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Basic mandatory fields | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (2 + 1 + 1 + 32 + 48 + 4 > (size_t) (end - p)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     session->ciphersuite = (p[0] << 8) | p[1]; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     p += 2; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     session->compression = *p++; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     session->id_len = *p++; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(session->id, p, 32); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     p += 32; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(session->master, p, 48); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     p += 48; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     session->verify_result = ((uint32_t) p[0] << 24) | | 
					
						
							|  |  |  |                              ((uint32_t) p[1] << 16) | | 
					
						
							|  |  |  |                              ((uint32_t) p[2] <<  8) | | 
					
						
							|  |  |  |                              ((uint32_t) p[3]); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     p += 4; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* Immediately clear invalid pointer values that have been read, in case
 | 
					
						
							|  |  |  |      * we exit early before we replaced them with valid ones. */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
 | 
					
						
							|  |  |  |     session->peer_cert = NULL; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     session->peer_cert_digest = NULL; | 
					
						
							|  |  |  | #endif /* !MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_X509_CRT_PARSE_C */
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SESSION_TICKETS) && defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							|  |  |  |     session->ticket = NULL; | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_SESSION_TICKETS && MBEDTLS_SSL_CLI_C */
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Peer certificate | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
 | 
					
						
							|  |  |  |     /* Deserialize CRT from the end of the ticket. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (3 > (size_t) (end - p)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     cert_len = (p[0] << 16) | (p[1] << 8) | p[2]; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     p += 3; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (cert_len != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (cert_len > (size_t) (end - p)) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         session->peer_cert = mbedtls_calloc(1, sizeof(mbedtls_x509_crt)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (session->peer_cert == NULL) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_ALLOC_FAILED; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_x509_crt_init(session->peer_cert); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((ret = mbedtls_x509_crt_parse_der(session->peer_cert, | 
					
						
							|  |  |  |                                               p, cert_len)) != 0) { | 
					
						
							|  |  |  |             mbedtls_x509_crt_free(session->peer_cert); | 
					
						
							|  |  |  |             mbedtls_free(session->peer_cert); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             session->peer_cert = NULL; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return ret; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += cert_len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
 | 
					
						
							|  |  |  |     /* Deserialize CRT digest from the end of the ticket. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (2 > (size_t) (end - p)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     session->peer_cert_digest_type = (mbedtls_md_type_t) *p++; | 
					
						
							|  |  |  |     session->peer_cert_digest_len  = (size_t) *p++; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (session->peer_cert_digest_len != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         const mbedtls_md_info_t *md_info = | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             mbedtls_md_info_from_type(session->peer_cert_digest_type); | 
					
						
							|  |  |  |         if (md_info == NULL) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (session->peer_cert_digest_len != mbedtls_md_get_size(md_info)) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (session->peer_cert_digest_len > (size_t) (end - p)) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         session->peer_cert_digest = | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             mbedtls_calloc(1, session->peer_cert_digest_len); | 
					
						
							|  |  |  |         if (session->peer_cert_digest == NULL) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_ALLOC_FAILED; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         memcpy(session->peer_cert_digest, p, | 
					
						
							|  |  |  |                session->peer_cert_digest_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += session->peer_cert_digest_len; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_X509_CRT_PARSE_C */
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Session ticket and associated data | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SESSION_TICKETS) && defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (3 > (size_t) (end - p)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     session->ticket_len = (p[0] << 16) | (p[1] << 8) | p[2]; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     p += 3; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (session->ticket_len != 0) { | 
					
						
							|  |  |  |         if (session->ticket_len > (size_t) (end - p)) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         session->ticket = mbedtls_calloc(1, session->ticket_len); | 
					
						
							|  |  |  |         if (session->ticket == NULL) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_ALLOC_FAILED; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         memcpy(session->ticket, p, session->ticket_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += session->ticket_len; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (4 > (size_t) (end - p)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     session->ticket_lifetime = ((uint32_t) p[0] << 24) | | 
					
						
							|  |  |  |                                ((uint32_t) p[1] << 16) | | 
					
						
							|  |  |  |                                ((uint32_t) p[2] <<  8) | | 
					
						
							|  |  |  |                                ((uint32_t) p[3]); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     p += 4; | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_SESSION_TICKETS && MBEDTLS_SSL_CLI_C */
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Misc extension-related info | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (1 > (size_t) (end - p)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     session->mfl_code = *p++; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (1 > (size_t) (end - p)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     session->trunc_hmac = *p++; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (1 > (size_t) (end - p)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     session->encrypt_then_mac = *p++; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* Done, should have consumed entire buffer */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (p != end) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Deserialize session: public wrapper for error cleaning | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_session_load(mbedtls_ssl_session *session, | 
					
						
							|  |  |  |                              const unsigned char *buf, | 
					
						
							|  |  |  |                              size_t len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     int ret = ssl_session_load(session, 0, buf, len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         mbedtls_ssl_session_free(session); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Perform a single step of the SSL handshake | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_handshake_step(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl == NULL || ssl->conf == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->endpoint == MBEDTLS_SSL_IS_CLIENT) { | 
					
						
							|  |  |  |         ret = mbedtls_ssl_handshake_client_step(ssl); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->endpoint == MBEDTLS_SSL_IS_SERVER) { | 
					
						
							|  |  |  |         ret = mbedtls_ssl_handshake_server_step(ssl); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Perform the SSL handshake | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_handshake(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* Sanity checks */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl == NULL || ssl->conf == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM && | 
					
						
							|  |  |  |         (ssl->f_set_timer == NULL || ssl->f_get_timer == NULL)) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("You must use " | 
					
						
							|  |  |  |                                   "mbedtls_ssl_set_timer_cb() for DTLS")); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_DTLS */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> handshake")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* Main handshake loop */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     while (ssl->state != MBEDTLS_SSL_HANDSHAKE_OVER) { | 
					
						
							|  |  |  |         ret = mbedtls_ssl_handshake_step(ssl); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (ret != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("<= handshake")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_RENEGOTIATION)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Write HelloRequest to request renegotiation on server | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_write_hello_request(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> write hello request")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ssl->out_msglen  = 4; | 
					
						
							|  |  |  |     ssl->out_msgtype = MBEDTLS_SSL_MSG_HANDSHAKE; | 
					
						
							|  |  |  |     ssl->out_msg[0]  = MBEDTLS_SSL_HS_HELLO_REQUEST; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_ssl_write_handshake_msg(ssl)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_write_handshake_msg", ret); | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("<= write hello request")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_SRV_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Actually renegotiate current connection, triggered by either: | 
					
						
							|  |  |  |  * - any side: calling mbedtls_ssl_renegotiate(), | 
					
						
							|  |  |  |  * - client: receiving a HelloRequest during mbedtls_ssl_read(), | 
					
						
							|  |  |  |  * - server: receiving any handshake message on server during mbedtls_ssl_read() after | 
					
						
							|  |  |  |  *   the initial handshake is completed. | 
					
						
							|  |  |  |  * If the handshake doesn't complete due to waiting for I/O, it will continue | 
					
						
							|  |  |  |  * during the next calls to mbedtls_ssl_renegotiate() or mbedtls_ssl_read() respectively. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_start_renegotiation(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> renegotiate")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = ssl_handshake_init(ssl)) != 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* RFC 6347 4.2.2: "[...] the HelloRequest will have message_seq = 0 and
 | 
					
						
							|  |  |  |      * the ServerHello will have message_seq = 1" */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM && | 
					
						
							|  |  |  |         ssl->renego_status == MBEDTLS_SSL_RENEGOTIATION_PENDING) { | 
					
						
							|  |  |  |         if (ssl->conf->endpoint == MBEDTLS_SSL_IS_SERVER) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             ssl->handshake->out_msg_seq = 1; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             ssl->handshake->in_msg_seq = 1; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ssl->state = MBEDTLS_SSL_HELLO_REQUEST; | 
					
						
							|  |  |  |     ssl->renego_status = MBEDTLS_SSL_RENEGOTIATION_IN_PROGRESS; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_ssl_handshake(ssl)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_handshake", ret); | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("<= renegotiate")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Renegotiate current connection on client, | 
					
						
							|  |  |  |  * or request renegotiation on server | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_renegotiate(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl == NULL || ssl->conf == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							|  |  |  |     /* On server, just send the request */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->endpoint == MBEDTLS_SSL_IS_SERVER) { | 
					
						
							|  |  |  |         if (ssl->state != MBEDTLS_SSL_HANDSHAKE_OVER) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         ssl->renego_status = MBEDTLS_SSL_RENEGOTIATION_PENDING; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Did we already try/start sending HelloRequest? */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (ssl->out_left != 0) { | 
					
						
							|  |  |  |             return mbedtls_ssl_flush_output(ssl); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         return ssl_write_hello_request(ssl); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_SRV_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * On client, either start the renegotiation process or, | 
					
						
							|  |  |  |      * if already in progress, continue the handshake | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->renego_status != MBEDTLS_SSL_RENEGOTIATION_IN_PROGRESS) { | 
					
						
							|  |  |  |         if (ssl->state != MBEDTLS_SSL_HANDSHAKE_OVER) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((ret = mbedtls_ssl_start_renegotiation(ssl)) != 0) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_start_renegotiation", ret); | 
					
						
							|  |  |  |             return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         if ((ret = mbedtls_ssl_handshake(ssl)) != 0) { | 
					
						
							|  |  |  |             MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_ssl_handshake", ret); | 
					
						
							|  |  |  |             return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_CLI_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_RENEGOTIATION */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static void ssl_key_cert_free(mbedtls_ssl_key_cert *key_cert) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     mbedtls_ssl_key_cert *cur = key_cert, *next; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     while (cur != NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         next = cur->next; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_free(cur); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         cur = next; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_X509_CRT_PARSE_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_handshake_free(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     mbedtls_ssl_handshake_params *handshake = ssl->handshake; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (handshake == NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_ASYNC_PRIVATE)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->f_async_cancel != NULL && handshake->async_in_progress != 0) { | 
					
						
							|  |  |  |         ssl->conf->f_async_cancel(ssl); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         handshake->async_in_progress = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_ASYNC_PRIVATE */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3) || defined(MBEDTLS_SSL_PROTO_TLS1) || \
 | 
					
						
							|  |  |  |     defined(MBEDTLS_SSL_PROTO_TLS1_1) | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_free(&handshake->fin_md5); | 
					
						
							|  |  |  |     mbedtls_sha1_free(&handshake->fin_sha1); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA256_C)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     psa_hash_abort(&handshake->fin_sha256_psa); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha256_free(&handshake->fin_sha256); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_SHA512_NO_SHA384)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     psa_hash_abort(&handshake->fin_sha384_psa); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_sha512_free(&handshake->fin_sha512); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_DHM_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_dhm_free(&handshake->dhm_ctx); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECDH_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ecdh_free(&handshake->ecdh_ctx); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ecjpake_free(&handshake->ecjpake_ctx); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_free(handshake->ecjpake_cache); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     handshake->ecjpake_cache = NULL; | 
					
						
							|  |  |  |     handshake->ecjpake_cache_len = 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECDH_C) || defined(MBEDTLS_ECDSA_C) || \
 | 
					
						
							|  |  |  |     defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED) | 
					
						
							|  |  |  |     /* explicit void pointer cast for buggy MS compiler */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_free((void *) handshake->curves); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (handshake->psk != NULL) { | 
					
						
							|  |  |  |         mbedtls_platform_zeroize(handshake->psk, handshake->psk_len); | 
					
						
							|  |  |  |         mbedtls_free(handshake->psk); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C) && \
 | 
					
						
							|  |  |  |     defined(MBEDTLS_SSL_SERVER_NAME_INDICATION) | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Free only the linked list wrapper, not the keys themselves | 
					
						
							|  |  |  |      * since the belong to the SNI callback | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (handshake->sni_key_cert != NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         mbedtls_ssl_key_cert *cur = handshake->sni_key_cert, *next; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         while (cur != NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             next = cur->next; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             mbedtls_free(cur); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             cur = next; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_X509_CRT_PARSE_C && MBEDTLS_SSL_SERVER_NAME_INDICATION */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_ECP_RESTARTABLE_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_x509_crt_restart_free(&handshake->ecrs_ctx); | 
					
						
							|  |  |  |     if (handshake->ecrs_peer_cert != NULL) { | 
					
						
							|  |  |  |         mbedtls_x509_crt_free(handshake->ecrs_peer_cert); | 
					
						
							|  |  |  |         mbedtls_free(handshake->ecrs_peer_cert); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C) &&        \
 | 
					
						
							|  |  |  |     !defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE) | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_pk_free(&handshake->peer_pubkey); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_X509_CRT_PARSE_C && !MBEDTLS_SSL_KEEP_PEER_CERTIFICATE */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_free(handshake->verify_cookie); | 
					
						
							|  |  |  |     mbedtls_ssl_flight_free(handshake->flight); | 
					
						
							|  |  |  |     mbedtls_ssl_buffering_free(ssl); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECDH_C) &&                  \
 | 
					
						
							|  |  |  |     defined(MBEDTLS_USE_PSA_CRYPTO) | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     psa_destroy_key(handshake->ecdh_psa_privkey); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_ECDH_C && MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(handshake, | 
					
						
							|  |  |  |                              sizeof(mbedtls_ssl_handshake_params)); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH)
 | 
					
						
							|  |  |  |     /* If the buffers are too big - reallocate. Because of the way Mbed TLS
 | 
					
						
							|  |  |  |      * processes datagrams and the fact that a datagram is allowed to have | 
					
						
							|  |  |  |      * several records in it, it is possible that the I/O buffers are not | 
					
						
							|  |  |  |      * empty at this stage */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     handle_buffer_resizing(ssl, 1, mbedtls_ssl_get_input_buflen(ssl), | 
					
						
							|  |  |  |                            mbedtls_ssl_get_output_buflen(ssl)); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_session_free(mbedtls_ssl_session *session) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (session == NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ssl_clear_peer_cert(session); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SESSION_TICKETS) && defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_free(session->ticket); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(session, sizeof(mbedtls_ssl_session)); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_CONTEXT_CONFIG_DTLS_CONNECTION_ID 1u
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_CONTEXT_CONFIG_DTLS_CONNECTION_ID 0u
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_DTLS_BADMAC_LIMIT)
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_CONTEXT_CONFIG_DTLS_BADMAC_LIMIT 1u
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_CONTEXT_CONFIG_DTLS_BADMAC_LIMIT 0u
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_DTLS_BADMAC_LIMIT */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_CONTEXT_CONFIG_DTLS_ANTI_REPLAY 1u
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_CONTEXT_CONFIG_DTLS_ANTI_REPLAY 0u
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_DTLS_ANTI_REPLAY */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_ALPN)
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_CONTEXT_CONFIG_ALPN 1u
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_CONTEXT_CONFIG_ALPN 0u
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_ALPN */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_CONTEXT_CONFIG_DTLS_CONNECTION_ID_BIT    0
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_CONTEXT_CONFIG_DTLS_BADMAC_LIMIT_BIT     1
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_CONTEXT_CONFIG_DTLS_ANTI_REPLAY_BIT      2
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_CONTEXT_CONFIG_ALPN_BIT                  3
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define SSL_SERIALIZED_CONTEXT_CONFIG_BITFLAG   \
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ((uint32_t) (                              \ | 
					
						
							|  |  |  |          (SSL_SERIALIZED_CONTEXT_CONFIG_DTLS_CONNECTION_ID << \ | 
					
						
							|  |  |  |              SSL_SERIALIZED_CONTEXT_CONFIG_DTLS_CONNECTION_ID_BIT) | \ | 
					
						
							|  |  |  |          (SSL_SERIALIZED_CONTEXT_CONFIG_DTLS_BADMAC_LIMIT << \ | 
					
						
							|  |  |  |              SSL_SERIALIZED_CONTEXT_CONFIG_DTLS_BADMAC_LIMIT_BIT) | \ | 
					
						
							|  |  |  |          (SSL_SERIALIZED_CONTEXT_CONFIG_DTLS_ANTI_REPLAY << \ | 
					
						
							|  |  |  |              SSL_SERIALIZED_CONTEXT_CONFIG_DTLS_ANTI_REPLAY_BIT) | \ | 
					
						
							|  |  |  |          (SSL_SERIALIZED_CONTEXT_CONFIG_ALPN << SSL_SERIALIZED_CONTEXT_CONFIG_ALPN_BIT) | \ | 
					
						
							|  |  |  |          0u)) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | static unsigned char ssl_serialized_context_header[] = { | 
					
						
							|  |  |  |     MBEDTLS_VERSION_MAJOR, | 
					
						
							|  |  |  |     MBEDTLS_VERSION_MINOR, | 
					
						
							|  |  |  |     MBEDTLS_VERSION_PATCH, | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_BYTE_1(SSL_SERIALIZED_SESSION_CONFIG_BITFLAG), | 
					
						
							|  |  |  |     MBEDTLS_BYTE_0(SSL_SERIALIZED_SESSION_CONFIG_BITFLAG), | 
					
						
							|  |  |  |     MBEDTLS_BYTE_2(SSL_SERIALIZED_CONTEXT_CONFIG_BITFLAG), | 
					
						
							|  |  |  |     MBEDTLS_BYTE_1(SSL_SERIALIZED_CONTEXT_CONFIG_BITFLAG), | 
					
						
							|  |  |  |     MBEDTLS_BYTE_0(SSL_SERIALIZED_CONTEXT_CONFIG_BITFLAG), | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Serialize a full SSL context | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The format of the serialized data is: | 
					
						
							|  |  |  |  * (in the presentation language of TLS, RFC 8446 section 3) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  // header
 | 
					
						
							|  |  |  |  *  opaque mbedtls_version[3];   // major, minor, patch
 | 
					
						
							|  |  |  |  *  opaque context_format[5];    // version-specific field determining
 | 
					
						
							|  |  |  |  *                               // the format of the remaining
 | 
					
						
							|  |  |  |  *                               // serialized data.
 | 
					
						
							|  |  |  |  *  Note: When updating the format, remember to keep these | 
					
						
							|  |  |  |  *        version+format bytes. (We may make their size part of the API.) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  // session sub-structure
 | 
					
						
							|  |  |  |  *  opaque session<1..2^32-1>;  // see mbedtls_ssl_session_save()
 | 
					
						
							|  |  |  |  *  // transform sub-structure
 | 
					
						
							|  |  |  |  *  uint8 random[64];           // ServerHello.random+ClientHello.random
 | 
					
						
							|  |  |  |  *  uint8 in_cid<0..2^8-1>      // Connection ID: expected incoming value
 | 
					
						
							|  |  |  |  *  uint8 out_cid<0..2^8-1>     // Connection ID: outgoing value to use
 | 
					
						
							|  |  |  |  *  // fields from ssl_context
 | 
					
						
							|  |  |  |  *  uint32 badmac_seen;         // DTLS: number of records with failing MAC
 | 
					
						
							|  |  |  |  *  uint64 in_window_top;       // DTLS: last validated record seq_num
 | 
					
						
							|  |  |  |  *  uint64 in_window;           // DTLS: bitmask for replay protection
 | 
					
						
							|  |  |  |  *  uint8 disable_datagram_packing; // DTLS: only one record per datagram
 | 
					
						
							|  |  |  |  *  uint64 cur_out_ctr;         // Record layer: outgoing sequence number
 | 
					
						
							|  |  |  |  *  uint16 mtu;                 // DTLS: path mtu (max outgoing fragment size)
 | 
					
						
							|  |  |  |  *  uint8 alpn_chosen<0..2^8-1> // ALPN: negotiated application protocol
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Note that many fields of the ssl_context or sub-structures are not | 
					
						
							|  |  |  |  * serialized, as they fall in one of the following categories: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  1. forced value (eg in_left must be 0) | 
					
						
							|  |  |  |  *  2. pointer to dynamically-allocated memory (eg session, transform) | 
					
						
							|  |  |  |  *  3. value can be re-derived from other data (eg session keys from MS) | 
					
						
							|  |  |  |  *  4. value was temporary (eg content of input buffer) | 
					
						
							|  |  |  |  *  5. value will be provided by the user again (eg I/O callbacks and context) | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_context_save(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                              unsigned char *buf, | 
					
						
							|  |  |  |                              size_t buf_len, | 
					
						
							|  |  |  |                              size_t *olen) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     unsigned char *p = buf; | 
					
						
							|  |  |  |     size_t used = 0; | 
					
						
							|  |  |  |     size_t session_len; | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Enforce usage restrictions, see "return BAD_INPUT_DATA" in | 
					
						
							|  |  |  |      * this function's documentation. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * These are due to assumptions/limitations in the implementation. Some of | 
					
						
							|  |  |  |      * them are likely to stay (no handshake in progress) some might go away | 
					
						
							|  |  |  |      * (only DTLS) but are currently used to simplify the implementation. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     /* The initial handshake must be over */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->state != MBEDTLS_SSL_HANDSHAKE_OVER) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("Initial handshake isn't over")); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->handshake != NULL) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("Handshake isn't completed")); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     /* Double-check that sub-structures are indeed ready */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->transform == NULL || ssl->session == NULL) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("Serialised structures aren't ready")); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     /* There must be no pending incoming or outgoing data */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_ssl_check_pending(ssl) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("There is pending incoming data")); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->out_left != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("There is pending outgoing data")); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  |     /* Protocol must be DTLS, not TLS */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("Only DTLS is supported")); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     /* Version must be 1.2 */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->major_ver != MBEDTLS_SSL_MAJOR_VERSION_3) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("Only version 1.2 supported")); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->minor_ver != MBEDTLS_SSL_MINOR_VERSION_3) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("Only version 1.2 supported")); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* We must be using an AEAD ciphersuite */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_ssl_transform_uses_aead(ssl->transform) != 1) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("Only AEAD ciphersuites supported")); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     /* Renegotiation must not be enabled */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_RENEGOTIATION)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->disable_renegotiation != MBEDTLS_SSL_RENEGOTIATION_DISABLED) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(1, ("Renegotiation must not be enabled")); | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |      * Version and format identifier | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     used += sizeof(ssl_serialized_context_header); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (used <= buf_len) { | 
					
						
							|  |  |  |         memcpy(p, ssl_serialized_context_header, | 
					
						
							|  |  |  |                sizeof(ssl_serialized_context_header)); | 
					
						
							|  |  |  |         p += sizeof(ssl_serialized_context_header); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Session (length + data) | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = ssl_session_save(ssl->session, 1, NULL, 0, &session_len); | 
					
						
							|  |  |  |     if (ret != MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     used += 4 + session_len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (used <= buf_len) { | 
					
						
							|  |  |  |         MBEDTLS_PUT_UINT32_BE(session_len, p, 0); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += 4; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ret = ssl_session_save(ssl->session, 1, | 
					
						
							|  |  |  |                                p, session_len, &session_len); | 
					
						
							|  |  |  |         if (ret != 0) { | 
					
						
							|  |  |  |             return ret; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += session_len; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Transform | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     used += sizeof(ssl->transform->randbytes); | 
					
						
							|  |  |  |     if (used <= buf_len) { | 
					
						
							|  |  |  |         memcpy(p, ssl->transform->randbytes, | 
					
						
							|  |  |  |                sizeof(ssl->transform->randbytes)); | 
					
						
							|  |  |  |         p += sizeof(ssl->transform->randbytes); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
 | 
					
						
							|  |  |  |     used += 2 + ssl->transform->in_cid_len + ssl->transform->out_cid_len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (used <= buf_len) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         *p++ = ssl->transform->in_cid_len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         memcpy(p, ssl->transform->in_cid, ssl->transform->in_cid_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += ssl->transform->in_cid_len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         *p++ = ssl->transform->out_cid_len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         memcpy(p, ssl->transform->out_cid, ssl->transform->out_cid_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += ssl->transform->out_cid_len; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Saved fields from top-level ssl_context structure | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_DTLS_BADMAC_LIMIT)
 | 
					
						
							|  |  |  |     used += 4; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (used <= buf_len) { | 
					
						
							|  |  |  |         MBEDTLS_PUT_UINT32_BE(ssl->badmac_seen, p, 0); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += 4; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_DTLS_BADMAC_LIMIT */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)
 | 
					
						
							|  |  |  |     used += 16; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (used <= buf_len) { | 
					
						
							|  |  |  |         MBEDTLS_PUT_UINT64_BE(ssl->in_window_top, p, 0); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += 8; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         MBEDTLS_PUT_UINT64_BE(ssl->in_window, p, 0); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += 8; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_DTLS_ANTI_REPLAY */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     used += 1; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (used <= buf_len) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         *p++ = ssl->disable_datagram_packing; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_DTLS */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     used += 8; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (used <= buf_len) { | 
					
						
							|  |  |  |         memcpy(p, ssl->cur_out_ctr, 8); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += 8; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     used += 2; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (used <= buf_len) { | 
					
						
							|  |  |  |         MBEDTLS_PUT_UINT16_BE(ssl->mtu, p, 0); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         p += 2; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_DTLS */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_ALPN)
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         const uint8_t alpn_len = ssl->alpn_chosen | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                                ? (uint8_t) strlen(ssl->alpn_chosen) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |                                : 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         used += 1 + alpn_len; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (used <= buf_len) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             *p++ = alpn_len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             if (ssl->alpn_chosen != NULL) { | 
					
						
							|  |  |  |                 memcpy(p, ssl->alpn_chosen, alpn_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |                 p += alpn_len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_ALPN */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Done | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     *olen = used; | 
					
						
							| 
									
										
										
										
											2020-09-05 12:53:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (used > buf_len) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_BUF(4, "saved context", buf, used); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return mbedtls_ssl_session_reset_int(ssl, 0); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |  * Helper to get TLS 1.2 PRF from ciphersuite | 
					
						
							|  |  |  |  * (Duplicates bits of logic from ssl_set_handshake_prfs().) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  | #if defined(MBEDTLS_SHA256_C) || \
 | 
					
						
							|  |  |  |     (defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_SHA512_NO_SHA384)) | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | typedef int (*tls_prf_fn)(const unsigned char *secret, size_t slen, | 
					
						
							|  |  |  |                           const char *label, | 
					
						
							|  |  |  |                           const unsigned char *random, size_t rlen, | 
					
						
							|  |  |  |                           unsigned char *dstbuf, size_t dlen); | 
					
						
							|  |  |  | static tls_prf_fn ssl_tls12prf_from_cs(int ciphersuite_id) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     const mbedtls_ssl_ciphersuite_t * const ciphersuite_info = | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_ssl_ciphersuite_from_id(ciphersuite_id); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ciphersuite_info == NULL) { | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_SHA512_NO_SHA384)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ciphersuite_info->mac == MBEDTLS_MD_SHA384) { | 
					
						
							|  |  |  |         return tls_prf_sha384; | 
					
						
							|  |  |  |     } else | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA256_C)
 | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (ciphersuite_info->mac == MBEDTLS_MD_SHA256) { | 
					
						
							|  |  |  |             return tls_prf_sha256; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  | #if !defined(MBEDTLS_SHA256_C) && \
 | 
					
						
							|  |  |  |     (!defined(MBEDTLS_SHA512_C) || defined(MBEDTLS_SHA512_NO_SHA384)) | 
					
						
							|  |  |  |     (void) ciphersuite_info; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return NULL; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  | #endif /* MBEDTLS_SHA256_C ||
 | 
					
						
							|  |  |  |           (MBEDTLS_SHA512_C && !MBEDTLS_SHA512_NO_SHA384) */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |  * Deserialize context, see mbedtls_ssl_context_save() for format. | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |  * This internal version is wrapped by a public function that cleans up in | 
					
						
							|  |  |  |  * case of error. | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_context_load(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                             const unsigned char *buf, | 
					
						
							|  |  |  |                             size_t len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     const unsigned char *p = buf; | 
					
						
							|  |  |  |     const unsigned char * const end = buf + len; | 
					
						
							|  |  |  |     size_t session_len; | 
					
						
							|  |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  |     tls_prf_fn prf_func = NULL; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * The context should have been freshly setup or reset. | 
					
						
							|  |  |  |      * Give the user an error in case of obvious misuse. | 
					
						
							|  |  |  |      * (Checking session is useful because it won't be NULL if we're | 
					
						
							|  |  |  |      * renegotiating, or if the user mistakenly loaded a session first.) | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->state != MBEDTLS_SSL_HELLO_REQUEST || | 
					
						
							|  |  |  |         ssl->session != NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * We can't check that the config matches the initial one, but we can at | 
					
						
							|  |  |  |      * least check it matches the requirements for serializing. | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM || | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ssl->conf->max_major_ver < MBEDTLS_SSL_MAJOR_VERSION_3 || | 
					
						
							|  |  |  |         ssl->conf->min_major_ver > MBEDTLS_SSL_MAJOR_VERSION_3 || | 
					
						
							|  |  |  |         ssl->conf->max_minor_ver < MBEDTLS_SSL_MINOR_VERSION_3 || | 
					
						
							|  |  |  |         ssl->conf->min_minor_ver > MBEDTLS_SSL_MINOR_VERSION_3 || | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_RENEGOTIATION)
 | 
					
						
							|  |  |  |         ssl->conf->disable_renegotiation != MBEDTLS_SSL_RENEGOTIATION_DISABLED || | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_BUF(4, "context to load", buf, len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Check version identifier | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((size_t) (end - p) < sizeof(ssl_serialized_context_header)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (memcmp(p, ssl_serialized_context_header, | 
					
						
							|  |  |  |                sizeof(ssl_serialized_context_header)) != 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_VERSION_MISMATCH; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     p += sizeof(ssl_serialized_context_header); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Session | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((size_t) (end - p) < 4) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     session_len = ((size_t) p[0] << 24) | | 
					
						
							|  |  |  |                   ((size_t) p[1] << 16) | | 
					
						
							|  |  |  |                   ((size_t) p[2] <<  8) | | 
					
						
							|  |  |  |                   ((size_t) p[3]); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     p += 4; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* This has been allocated by ssl_handshake_init(), called by
 | 
					
						
							|  |  |  |      * by either mbedtls_ssl_session_reset_int() or mbedtls_ssl_setup(). */ | 
					
						
							|  |  |  |     ssl->session = ssl->session_negotiate; | 
					
						
							|  |  |  |     ssl->session_in = ssl->session; | 
					
						
							|  |  |  |     ssl->session_out = ssl->session; | 
					
						
							|  |  |  |     ssl->session_negotiate = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((size_t) (end - p) < session_len) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = ssl_session_load(ssl->session, 1, p, session_len); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         mbedtls_ssl_session_free(ssl->session); | 
					
						
							|  |  |  |         return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     p += session_len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Transform | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* This has been allocated by ssl_handshake_init(), called by
 | 
					
						
							|  |  |  |      * by either mbedtls_ssl_session_reset_int() or mbedtls_ssl_setup(). */ | 
					
						
							|  |  |  |     ssl->transform = ssl->transform_negotiate; | 
					
						
							|  |  |  |     ssl->transform_in = ssl->transform; | 
					
						
							|  |  |  |     ssl->transform_out = ssl->transform; | 
					
						
							|  |  |  |     ssl->transform_negotiate = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     prf_func = ssl_tls12prf_from_cs(ssl->session->ciphersuite); | 
					
						
							|  |  |  |     if (prf_func == NULL) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* Read random bytes and populate structure */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((size_t) (end - p) < sizeof(ssl->transform->randbytes)) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = ssl_populate_transform(ssl->transform, | 
					
						
							|  |  |  |                                  ssl->session->ciphersuite, | 
					
						
							|  |  |  |                                  ssl->session->master, | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_SOME_MODES_USE_MAC)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                                  ssl->session->encrypt_then_mac, | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_TRUNCATED_HMAC)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                                  ssl->session->trunc_hmac, | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_SOME_MODES_USE_MAC */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_ZLIB_SUPPORT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                                  ssl->session->compression, | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                                  prf_func, | 
					
						
							|  |  |  |                                  p, /* currently pointing to randbytes */ | 
					
						
							|  |  |  |                                  MBEDTLS_SSL_MINOR_VERSION_3, /* (D)TLS 1.2 is forced */ | 
					
						
							|  |  |  |                                  ssl->conf->endpoint, | 
					
						
							|  |  |  |                                  ssl); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     p += sizeof(ssl->transform->randbytes); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
 | 
					
						
							|  |  |  |     /* Read connection IDs and store them */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((size_t) (end - p) < 1) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     ssl->transform->in_cid_len = *p++; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((size_t) (end - p) < ssl->transform->in_cid_len + 1u) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(ssl->transform->in_cid, p, ssl->transform->in_cid_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     p += ssl->transform->in_cid_len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     ssl->transform->out_cid_len = *p++; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((size_t) (end - p) < ssl->transform->out_cid_len) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(ssl->transform->out_cid, p, ssl->transform->out_cid_len); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     p += ssl->transform->out_cid_len; | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID */
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Saved fields from top-level ssl_context structure | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_DTLS_BADMAC_LIMIT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((size_t) (end - p) < 4) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ssl->badmac_seen = ((uint32_t) p[0] << 24) | | 
					
						
							|  |  |  |                        ((uint32_t) p[1] << 16) | | 
					
						
							|  |  |  |                        ((uint32_t) p[2] <<  8) | | 
					
						
							|  |  |  |                        ((uint32_t) p[3]); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     p += 4; | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_DTLS_BADMAC_LIMIT */
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((size_t) (end - p) < 16) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ssl->in_window_top = ((uint64_t) p[0] << 56) | | 
					
						
							|  |  |  |                          ((uint64_t) p[1] << 48) | | 
					
						
							|  |  |  |                          ((uint64_t) p[2] << 40) | | 
					
						
							|  |  |  |                          ((uint64_t) p[3] << 32) | | 
					
						
							|  |  |  |                          ((uint64_t) p[4] << 24) | | 
					
						
							|  |  |  |                          ((uint64_t) p[5] << 16) | | 
					
						
							|  |  |  |                          ((uint64_t) p[6] <<  8) | | 
					
						
							|  |  |  |                          ((uint64_t) p[7]); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     p += 8; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ssl->in_window = ((uint64_t) p[0] << 56) | | 
					
						
							|  |  |  |                      ((uint64_t) p[1] << 48) | | 
					
						
							|  |  |  |                      ((uint64_t) p[2] << 40) | | 
					
						
							|  |  |  |                      ((uint64_t) p[3] << 32) | | 
					
						
							|  |  |  |                      ((uint64_t) p[4] << 24) | | 
					
						
							|  |  |  |                      ((uint64_t) p[5] << 16) | | 
					
						
							|  |  |  |                      ((uint64_t) p[6] <<  8) | | 
					
						
							|  |  |  |                      ((uint64_t) p[7]); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     p += 8; | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_DTLS_ANTI_REPLAY */
 | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((size_t) (end - p) < 1) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     ssl->disable_datagram_packing = *p++; | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_PROTO_DTLS */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((size_t) (end - p) < 8) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(ssl->cur_out_ctr, p, 8); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     p += 8; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((size_t) (end - p) < 2) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ssl->mtu = (p[0] << 8) | p[1]; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     p += 2; | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_DTLS */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_ALPN)
 | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         uint8_t alpn_len; | 
					
						
							|  |  |  |         const char **cur; | 
					
						
							| 
									
										
										
										
											2018-07-28 11:16:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if ((size_t) (end - p) < 1) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         alpn_len = *p++; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (alpn_len != 0 && ssl->conf->alpn_list != NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             /* alpn_chosen should point to an item in the configured list */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             for (cur = ssl->conf->alpn_list; *cur != NULL; cur++) { | 
					
						
							|  |  |  |                 if (strlen(*cur) == alpn_len && | 
					
						
							|  |  |  |                     memcmp(p, cur, alpn_len) == 0) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |                     ssl->alpn_chosen = *cur; | 
					
						
							|  |  |  |                     break; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         /* can only happen on conf mismatch */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         if (alpn_len != 0 && ssl->alpn_chosen == NULL) { | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         p += alpn_len; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_ALPN */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |      * Forced fields from top-level ssl_context structure | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Most of them already set to the correct value by mbedtls_ssl_init() and | 
					
						
							|  |  |  |      * mbedtls_ssl_reset(), so we only need to set the remaining ones. | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     ssl->state = MBEDTLS_SSL_HANDSHAKE_OVER; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     ssl->major_ver = MBEDTLS_SSL_MAJOR_VERSION_3; | 
					
						
							|  |  |  |     ssl->minor_ver = MBEDTLS_SSL_MINOR_VERSION_3; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* Adjust pointers for header fields of outgoing records to
 | 
					
						
							|  |  |  |      * the given transform, accounting for explicit IV and CID. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ssl_update_out_pointers(ssl, ssl->transform); | 
					
						
							| 
									
										
										
										
											2019-02-16 17:19:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     ssl->in_epoch = 1; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     /* mbedtls_ssl_reset() leaves the handshake sub-structure allocated,
 | 
					
						
							|  |  |  |      * which we don't want - otherwise we'd end up freeing the wrong transform | 
					
						
							|  |  |  |      * by calling mbedtls_ssl_handshake_wrapup_free_hs_transform() | 
					
						
							|  |  |  |      * inappropriately. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->handshake != NULL) { | 
					
						
							|  |  |  |         mbedtls_ssl_handshake_free(ssl); | 
					
						
							|  |  |  |         mbedtls_free(ssl->handshake); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ssl->handshake = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Done - should have consumed entire buffer | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (p != end) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Deserialize context: public wrapper for error cleaning | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_context_load(mbedtls_ssl_context *context, | 
					
						
							|  |  |  |                              const unsigned char *buf, | 
					
						
							|  |  |  |                              size_t len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     int ret = ssl_context_load(context, buf, len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         mbedtls_ssl_free(context); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_CONTEXT_SERIALIZATION */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Free an SSL context | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_free(mbedtls_ssl_context *ssl) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl == NULL) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("=> free")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->out_buf != NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH)
 | 
					
						
							|  |  |  |         size_t out_buf_len = ssl->out_buf_len; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |         size_t out_buf_len = MBEDTLS_SSL_OUT_BUFFER_LEN; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_platform_zeroize(ssl->out_buf, out_buf_len); | 
					
						
							|  |  |  |         mbedtls_free(ssl->out_buf); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ssl->out_buf = NULL; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->in_buf != NULL) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH)
 | 
					
						
							|  |  |  |         size_t in_buf_len = ssl->in_buf_len; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |         size_t in_buf_len = MBEDTLS_SSL_IN_BUFFER_LEN; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_platform_zeroize(ssl->in_buf, in_buf_len); | 
					
						
							|  |  |  |         mbedtls_free(ssl->in_buf); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         ssl->in_buf = NULL; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ZLIB_SUPPORT)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->compress_buf != NULL) { | 
					
						
							|  |  |  |         mbedtls_platform_zeroize(ssl->compress_buf, MBEDTLS_SSL_COMPRESS_BUFFER_LEN); | 
					
						
							|  |  |  |         mbedtls_free(ssl->compress_buf); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->transform) { | 
					
						
							|  |  |  |         mbedtls_ssl_transform_free(ssl->transform); | 
					
						
							|  |  |  |         mbedtls_free(ssl->transform); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->handshake) { | 
					
						
							|  |  |  |         mbedtls_ssl_handshake_free(ssl); | 
					
						
							|  |  |  |         mbedtls_ssl_transform_free(ssl->transform_negotiate); | 
					
						
							|  |  |  |         mbedtls_ssl_session_free(ssl->session_negotiate); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_free(ssl->handshake); | 
					
						
							|  |  |  |         mbedtls_free(ssl->transform_negotiate); | 
					
						
							|  |  |  |         mbedtls_free(ssl->session_negotiate); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->session) { | 
					
						
							|  |  |  |         mbedtls_ssl_session_free(ssl->session); | 
					
						
							|  |  |  |         mbedtls_free(ssl->session); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->hostname != NULL) { | 
					
						
							|  |  |  |         mbedtls_platform_zeroize(ssl->hostname, strlen(ssl->hostname)); | 
					
						
							|  |  |  |         mbedtls_free(ssl->hostname); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_HW_RECORD_ACCEL)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_ssl_hw_record_finish != NULL) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_MSG(2, ("going for mbedtls_ssl_hw_record_finish()")); | 
					
						
							|  |  |  |         mbedtls_ssl_hw_record_finish(ssl); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY) && defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_free(ssl->cli_id); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(2, ("<= free")); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Actually clear after last debug message */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(ssl, sizeof(mbedtls_ssl_context)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2022-12-21 12:05:54 +01:00
										 |  |  |  * Initialize mbedtls_ssl_config | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_config_init(mbedtls_ssl_config *conf) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memset(conf, 0, sizeof(mbedtls_ssl_config)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | static int ssl_preset_default_hashes[] = { | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA512_C)
 | 
					
						
							|  |  |  |     MBEDTLS_MD_SHA512, | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_SHA512_NO_SHA384)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     MBEDTLS_MD_SHA384, | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA256_C)
 | 
					
						
							|  |  |  |     MBEDTLS_MD_SHA256, | 
					
						
							|  |  |  |     MBEDTLS_MD_SHA224, | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA1_C) && defined(MBEDTLS_TLS_DEFAULT_ALLOW_SHA1_IN_KEY_EXCHANGE)
 | 
					
						
							|  |  |  |     MBEDTLS_MD_SHA1, | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     MBEDTLS_MD_NONE | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int ssl_preset_suiteb_ciphersuites[] = { | 
					
						
							|  |  |  |     MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, | 
					
						
							|  |  |  |     MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, | 
					
						
							|  |  |  |     0 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | static int ssl_preset_suiteb_hashes[] = { | 
					
						
							|  |  |  |     MBEDTLS_MD_SHA256, | 
					
						
							|  |  |  |     MBEDTLS_MD_SHA384, | 
					
						
							|  |  |  |     MBEDTLS_MD_NONE | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECP_C)
 | 
					
						
							|  |  |  | static mbedtls_ecp_group_id ssl_preset_suiteb_curves[] = { | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  | #if defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     MBEDTLS_ECP_DP_SECP256R1, | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECP_DP_SECP384R1_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     MBEDTLS_ECP_DP_SECP384R1, | 
					
						
							| 
									
										
										
										
											2019-11-12 08:55:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     MBEDTLS_ECP_DP_NONE | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Load default in mbedtls_ssl_config | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_config_defaults(mbedtls_ssl_config *conf, | 
					
						
							|  |  |  |                                 int endpoint, int transport, int preset) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  | #if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Use the functions here so that they are covered in tests,
 | 
					
						
							|  |  |  |      * but otherwise access member directly for efficiency */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_ssl_conf_endpoint(conf, endpoint); | 
					
						
							|  |  |  |     mbedtls_ssl_conf_transport(conf, transport); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Things that are common to all presets | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (endpoint == MBEDTLS_SSL_IS_CLIENT) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         conf->authmode = MBEDTLS_SSL_VERIFY_REQUIRED; | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SESSION_TICKETS)
 | 
					
						
							|  |  |  |         conf->session_tickets = MBEDTLS_SSL_SESSION_TICKETS_ENABLED; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ARC4_C)
 | 
					
						
							|  |  |  |     conf->arc4_disabled = MBEDTLS_SSL_ARC4_DISABLED; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC)
 | 
					
						
							|  |  |  |     conf->encrypt_then_mac = MBEDTLS_SSL_ETM_ENABLED; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET)
 | 
					
						
							|  |  |  |     conf->extended_ms = MBEDTLS_SSL_EXTENDED_MS_ENABLED; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_CBC_RECORD_SPLITTING)
 | 
					
						
							|  |  |  |     conf->cbc_record_splitting = MBEDTLS_SSL_CBC_RECORD_SPLITTING_ENABLED; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY) && defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							|  |  |  |     conf->f_cookie_write = ssl_cookie_write_dummy; | 
					
						
							|  |  |  |     conf->f_cookie_check = ssl_cookie_check_dummy; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY)
 | 
					
						
							|  |  |  |     conf->anti_replay = MBEDTLS_SSL_ANTI_REPLAY_ENABLED; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							|  |  |  |     conf->cert_req_ca_list = MBEDTLS_SSL_CERT_REQ_CA_LIST_ENABLED; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							|  |  |  |     conf->hs_timeout_min = MBEDTLS_SSL_DTLS_TIMEOUT_DFL_MIN; | 
					
						
							|  |  |  |     conf->hs_timeout_max = MBEDTLS_SSL_DTLS_TIMEOUT_DFL_MAX; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_RENEGOTIATION)
 | 
					
						
							|  |  |  |     conf->renego_max_records = MBEDTLS_SSL_RENEGO_MAX_RECORDS_DEFAULT; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memset(conf->renego_period,     0x00, 2); | 
					
						
							|  |  |  |     memset(conf->renego_period + 2, 0xFF, 6); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_SSL_SRV_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (endpoint == MBEDTLS_SSL_IS_SERVER) { | 
					
						
							|  |  |  |         const unsigned char dhm_p[] = | 
					
						
							|  |  |  |             MBEDTLS_DHM_RFC3526_MODP_2048_P_BIN; | 
					
						
							|  |  |  |         const unsigned char dhm_g[] = | 
					
						
							|  |  |  |             MBEDTLS_DHM_RFC3526_MODP_2048_G_BIN; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ((ret = mbedtls_ssl_conf_dh_param_bin(conf, | 
					
						
							|  |  |  |                                                  dhm_p, sizeof(dhm_p), | 
					
						
							|  |  |  |                                                  dhm_g, sizeof(dhm_g))) != 0) { | 
					
						
							|  |  |  |             return ret; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Preset-specific defaults | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     switch (preset) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * NSA Suite B | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         case MBEDTLS_SSL_PRESET_SUITEB: | 
					
						
							|  |  |  |             conf->min_major_ver = MBEDTLS_SSL_MAJOR_VERSION_3; | 
					
						
							|  |  |  |             conf->min_minor_ver = MBEDTLS_SSL_MINOR_VERSION_3; /* TLS 1.2 */ | 
					
						
							|  |  |  |             conf->max_major_ver = MBEDTLS_SSL_MAX_MAJOR_VERSION; | 
					
						
							|  |  |  |             conf->max_minor_ver = MBEDTLS_SSL_MAX_MINOR_VERSION; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             conf->ciphersuite_list[MBEDTLS_SSL_MINOR_VERSION_0] = | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                 conf->ciphersuite_list[MBEDTLS_SSL_MINOR_VERSION_1] = | 
					
						
							|  |  |  |                     conf->ciphersuite_list[MBEDTLS_SSL_MINOR_VERSION_2] = | 
					
						
							|  |  |  |                         conf->ciphersuite_list[MBEDTLS_SSL_MINOR_VERSION_3] = | 
					
						
							|  |  |  |                             ssl_preset_suiteb_ciphersuites; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							|  |  |  |             conf->cert_profile = &mbedtls_x509_crt_profile_suiteb; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             conf->sig_hashes = ssl_preset_suiteb_hashes; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECP_C)
 | 
					
						
							|  |  |  |             conf->curve_list = ssl_preset_suiteb_curves; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Default | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             conf->min_major_ver = (MBEDTLS_SSL_MIN_MAJOR_VERSION > | 
					
						
							|  |  |  |                                    MBEDTLS_SSL_MIN_VALID_MAJOR_VERSION) ? | 
					
						
							|  |  |  |                                   MBEDTLS_SSL_MIN_MAJOR_VERSION : | 
					
						
							|  |  |  |                                   MBEDTLS_SSL_MIN_VALID_MAJOR_VERSION; | 
					
						
							|  |  |  |             conf->min_minor_ver = (MBEDTLS_SSL_MIN_MINOR_VERSION > | 
					
						
							|  |  |  |                                    MBEDTLS_SSL_MIN_VALID_MINOR_VERSION) ? | 
					
						
							|  |  |  |                                   MBEDTLS_SSL_MIN_MINOR_VERSION : | 
					
						
							|  |  |  |                                   MBEDTLS_SSL_MIN_VALID_MINOR_VERSION; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             conf->max_major_ver = MBEDTLS_SSL_MAX_MAJOR_VERSION; | 
					
						
							|  |  |  |             conf->max_minor_ver = MBEDTLS_SSL_MAX_MINOR_VERSION; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_DTLS)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             if (transport == MBEDTLS_SSL_TRANSPORT_DATAGRAM) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |                 conf->min_minor_ver = MBEDTLS_SSL_MINOR_VERSION_2; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             conf->ciphersuite_list[MBEDTLS_SSL_MINOR_VERSION_0] = | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                 conf->ciphersuite_list[MBEDTLS_SSL_MINOR_VERSION_1] = | 
					
						
							|  |  |  |                     conf->ciphersuite_list[MBEDTLS_SSL_MINOR_VERSION_2] = | 
					
						
							|  |  |  |                         conf->ciphersuite_list[MBEDTLS_SSL_MINOR_VERSION_3] = | 
					
						
							|  |  |  |                             mbedtls_ssl_list_ciphersuites(); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							|  |  |  |             conf->cert_profile = &mbedtls_x509_crt_profile_default; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             conf->sig_hashes = ssl_preset_default_hashes; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECP_C)
 | 
					
						
							|  |  |  |             conf->curve_list = mbedtls_ecp_grp_id_list(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_DHM_C) && defined(MBEDTLS_SSL_CLI_C)
 | 
					
						
							|  |  |  |             conf->dhm_min_bitlen = 1024; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Free mbedtls_ssl_config | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_config_free(mbedtls_ssl_config *conf) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  | #if defined(MBEDTLS_DHM_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mpi_free(&conf->dhm_P); | 
					
						
							|  |  |  |     mbedtls_mpi_free(&conf->dhm_G); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_KEY_EXCHANGE_SOME_PSK_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (conf->psk != NULL) { | 
					
						
							|  |  |  |         mbedtls_platform_zeroize(conf->psk, conf->psk_len); | 
					
						
							|  |  |  |         mbedtls_free(conf->psk); | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |         conf->psk = NULL; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         conf->psk_len = 0; | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (conf->psk_identity != NULL) { | 
					
						
							|  |  |  |         mbedtls_platform_zeroize(conf->psk_identity, conf->psk_identity_len); | 
					
						
							|  |  |  |         mbedtls_free(conf->psk_identity); | 
					
						
							| 
									
										
										
										
											2018-06-07 16:25:01 +02:00
										 |  |  |         conf->psk_identity = NULL; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         conf->psk_identity_len = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ssl_key_cert_free(conf->key_cert); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(conf, sizeof(mbedtls_ssl_config)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_PK_C) && \
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     (defined(MBEDTLS_RSA_C) || defined(MBEDTLS_ECDSA_C)) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Convert between MBEDTLS_PK_XXX and SSL_SIG_XXX | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | unsigned char mbedtls_ssl_sig_from_pk(mbedtls_pk_context *pk) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  | #if defined(MBEDTLS_RSA_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_pk_can_do(pk, MBEDTLS_PK_RSA)) { | 
					
						
							|  |  |  |         return MBEDTLS_SSL_SIG_RSA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECDSA_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_pk_can_do(pk, MBEDTLS_PK_ECDSA)) { | 
					
						
							|  |  |  |         return MBEDTLS_SSL_SIG_ECDSA; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return MBEDTLS_SSL_SIG_ANON; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | unsigned char mbedtls_ssl_sig_from_pk_alg(mbedtls_pk_type_t type) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     switch (type) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         case MBEDTLS_PK_RSA: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_SSL_SIG_RSA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         case MBEDTLS_PK_ECDSA: | 
					
						
							|  |  |  |         case MBEDTLS_PK_ECKEY: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_SSL_SIG_ECDSA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         default: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_SSL_SIG_ANON; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | mbedtls_pk_type_t mbedtls_ssl_pk_alg_from_sig(unsigned char sig) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     switch (sig) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_RSA_C)
 | 
					
						
							|  |  |  |         case MBEDTLS_SSL_SIG_RSA: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_PK_RSA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECDSA_C)
 | 
					
						
							|  |  |  |         case MBEDTLS_SSL_SIG_ECDSA: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_PK_ECDSA; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_PK_NONE; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_PK_C && ( MBEDTLS_RSA_C || MBEDTLS_ECDSA_C ) */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Find an entry in a signature-hash set matching a given hash algorithm. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | mbedtls_md_type_t mbedtls_ssl_sig_hash_set_find(mbedtls_ssl_sig_hash_set_t *set, | 
					
						
							|  |  |  |                                                 mbedtls_pk_type_t sig_alg) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     switch (sig_alg) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         case MBEDTLS_PK_RSA: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return set->rsa; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         case MBEDTLS_PK_ECDSA: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return set->ecdsa; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         default: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_MD_NONE; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Add a signature-hash-pair to a signature-hash set */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_sig_hash_set_add(mbedtls_ssl_sig_hash_set_t *set, | 
					
						
							|  |  |  |                                   mbedtls_pk_type_t sig_alg, | 
					
						
							|  |  |  |                                   mbedtls_md_type_t md_alg) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     switch (sig_alg) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         case MBEDTLS_PK_RSA: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             if (set->rsa == MBEDTLS_MD_NONE) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |                 set->rsa = md_alg; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         case MBEDTLS_PK_ECDSA: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             if (set->ecdsa == MBEDTLS_MD_NONE) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |                 set->ecdsa = md_alg; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Allow exactly one hash algorithm for each signature. */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_sig_hash_set_const_hash(mbedtls_ssl_sig_hash_set_t *set, | 
					
						
							|  |  |  |                                          mbedtls_md_type_t md_alg) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     set->rsa   = md_alg; | 
					
						
							|  |  |  |     set->ecdsa = md_alg; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1_2) &&
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |           MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */ | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Convert from MBEDTLS_SSL_HASH_XXX to MBEDTLS_MD_XXX | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | mbedtls_md_type_t mbedtls_ssl_md_alg_from_hash(unsigned char hash) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     switch (hash) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_MD5_C)
 | 
					
						
							|  |  |  |         case MBEDTLS_SSL_HASH_MD5: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_MD_MD5; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA1_C)
 | 
					
						
							|  |  |  |         case MBEDTLS_SSL_HASH_SHA1: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_MD_SHA1; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA256_C)
 | 
					
						
							|  |  |  |         case MBEDTLS_SSL_HASH_SHA224: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_MD_SHA224; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         case MBEDTLS_SSL_HASH_SHA256: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_MD_SHA256; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_SHA512_NO_SHA384)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         case MBEDTLS_SSL_HASH_SHA384: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_MD_SHA384; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA512_C)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         case MBEDTLS_SSL_HASH_SHA512: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_MD_SHA512; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_MD_NONE; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Convert from MBEDTLS_MD_XXX to MBEDTLS_SSL_HASH_XXX | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | unsigned char mbedtls_ssl_hash_from_md_alg(int md) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     switch (md) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_MD5_C)
 | 
					
						
							|  |  |  |         case MBEDTLS_MD_MD5: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_SSL_HASH_MD5; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA1_C)
 | 
					
						
							|  |  |  |         case MBEDTLS_MD_SHA1: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_SSL_HASH_SHA1; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA256_C)
 | 
					
						
							|  |  |  |         case MBEDTLS_MD_SHA224: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_SSL_HASH_SHA224; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         case MBEDTLS_MD_SHA256: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_SSL_HASH_SHA256; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_SHA512_NO_SHA384)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         case MBEDTLS_MD_SHA384: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_SSL_HASH_SHA384; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA512_C)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         case MBEDTLS_MD_SHA512: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_SSL_HASH_SHA512; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |             return MBEDTLS_SSL_HASH_NONE; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_ECP_C)
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Check if a curve proposed by the peer is in our list. | 
					
						
							|  |  |  |  * Return 0 if we're willing to use it, -1 otherwise. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_check_curve(const mbedtls_ssl_context *ssl, mbedtls_ecp_group_id grp_id) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     const mbedtls_ecp_group_id *gid; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->curve_list == NULL) { | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     for (gid = ssl->conf->curve_list; *gid != MBEDTLS_ECP_DP_NONE; gid++) { | 
					
						
							|  |  |  |         if (*gid == grp_id) { | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return -1; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Same as mbedtls_ssl_check_curve() but takes a TLS ID for the curve. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_check_curve_tls_id(const mbedtls_ssl_context *ssl, uint16_t tls_id) | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | { | 
					
						
							|  |  |  |     const mbedtls_ecp_curve_info *curve_info = | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         mbedtls_ecp_curve_info_from_tls_id(tls_id); | 
					
						
							|  |  |  |     if (curve_info == NULL) { | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return mbedtls_ssl_check_curve(ssl, curve_info->grp_id); | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_ECP_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Check if a hash proposed by the peer is in our list. | 
					
						
							|  |  |  |  * Return 0 if we're willing to use it, -1 otherwise. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_check_sig_hash(const mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                mbedtls_md_type_t md) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     const int *cur; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->conf->sig_hashes == NULL) { | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     for (cur = ssl->conf->sig_hashes; *cur != MBEDTLS_MD_NONE; cur++) { | 
					
						
							|  |  |  |         if (*cur == (int) md) { | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return -1; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CRT_PARSE_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_check_cert_usage(const mbedtls_x509_crt *cert, | 
					
						
							|  |  |  |                                  const mbedtls_ssl_ciphersuite_t *ciphersuite, | 
					
						
							|  |  |  |                                  int cert_endpoint, | 
					
						
							|  |  |  |                                  uint32_t *flags) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CHECK_KEY_USAGE)
 | 
					
						
							|  |  |  |     int usage = 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CHECK_EXTENDED_KEY_USAGE)
 | 
					
						
							|  |  |  |     const char *ext_oid; | 
					
						
							|  |  |  |     size_t ext_len; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(MBEDTLS_X509_CHECK_KEY_USAGE) &&          \
 | 
					
						
							|  |  |  |     !defined(MBEDTLS_X509_CHECK_EXTENDED_KEY_USAGE) | 
					
						
							|  |  |  |     ((void) cert); | 
					
						
							|  |  |  |     ((void) cert_endpoint); | 
					
						
							|  |  |  |     ((void) flags); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CHECK_KEY_USAGE)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (cert_endpoint == MBEDTLS_SSL_IS_SERVER) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         /* Server part of the key exchange */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         switch (ciphersuite->key_exchange) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |             case MBEDTLS_KEY_EXCHANGE_RSA: | 
					
						
							|  |  |  |             case MBEDTLS_KEY_EXCHANGE_RSA_PSK: | 
					
						
							|  |  |  |                 usage = MBEDTLS_X509_KU_KEY_ENCIPHERMENT; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             case MBEDTLS_KEY_EXCHANGE_DHE_RSA: | 
					
						
							|  |  |  |             case MBEDTLS_KEY_EXCHANGE_ECDHE_RSA: | 
					
						
							|  |  |  |             case MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA: | 
					
						
							|  |  |  |                 usage = MBEDTLS_X509_KU_DIGITAL_SIGNATURE; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             case MBEDTLS_KEY_EXCHANGE_ECDH_RSA: | 
					
						
							|  |  |  |             case MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA: | 
					
						
							|  |  |  |                 usage = MBEDTLS_X509_KU_KEY_AGREEMENT; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /* Don't use default: we want warnings when adding new values */ | 
					
						
							|  |  |  |             case MBEDTLS_KEY_EXCHANGE_NONE: | 
					
						
							|  |  |  |             case MBEDTLS_KEY_EXCHANGE_PSK: | 
					
						
							|  |  |  |             case MBEDTLS_KEY_EXCHANGE_DHE_PSK: | 
					
						
							|  |  |  |             case MBEDTLS_KEY_EXCHANGE_ECDHE_PSK: | 
					
						
							|  |  |  |             case MBEDTLS_KEY_EXCHANGE_ECJPAKE: | 
					
						
							|  |  |  |                 usage = 0; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         /* Client auth: we only implement rsa_sign and mbedtls_ecdsa_sign for now */ | 
					
						
							|  |  |  |         usage = MBEDTLS_X509_KU_DIGITAL_SIGNATURE; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_x509_crt_check_key_usage(cert, usage) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         *flags |= MBEDTLS_X509_BADCERT_KEY_USAGE; | 
					
						
							|  |  |  |         ret = -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     ((void) ciphersuite); | 
					
						
							|  |  |  | #endif /* MBEDTLS_X509_CHECK_KEY_USAGE */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_X509_CHECK_EXTENDED_KEY_USAGE)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (cert_endpoint == MBEDTLS_SSL_IS_SERVER) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ext_oid = MBEDTLS_OID_SERVER_AUTH; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ext_len = MBEDTLS_OID_SIZE(MBEDTLS_OID_SERVER_AUTH); | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ext_oid = MBEDTLS_OID_CLIENT_AUTH; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |         ext_len = MBEDTLS_OID_SIZE(MBEDTLS_OID_CLIENT_AUTH); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_x509_crt_check_extended_key_usage(cert, ext_oid, ext_len) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         *flags |= MBEDTLS_X509_BADCERT_EXT_KEY_USAGE; | 
					
						
							|  |  |  |         ret = -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_X509_CHECK_EXTENDED_KEY_USAGE */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_X509_CRT_PARSE_C */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_set_calc_verify_md(mbedtls_ssl_context *ssl, int md) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1_2)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl->minor_ver != MBEDTLS_SSL_MINOR_VERSION_3) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         return MBEDTLS_ERR_SSL_INVALID_VERIFY_HASH; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     switch (md) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1) || defined(MBEDTLS_SSL_PROTO_TLS1_1)
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_MD5_C)
 | 
					
						
							|  |  |  |         case MBEDTLS_SSL_HASH_MD5: | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_INVALID_VERIFY_HASH; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA1_C)
 | 
					
						
							|  |  |  |         case MBEDTLS_SSL_HASH_SHA1: | 
					
						
							|  |  |  |             ssl->handshake->calc_verify = ssl_calc_verify_tls; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1 || MBEDTLS_SSL_PROTO_TLS1_1 */
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #if defined(MBEDTLS_SHA512_C) && !defined(MBEDTLS_SHA512_NO_SHA384)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         case MBEDTLS_SSL_HASH_SHA384: | 
					
						
							|  |  |  |             ssl->handshake->calc_verify = ssl_calc_verify_tls_sha384; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SHA256_C)
 | 
					
						
							|  |  |  |         case MBEDTLS_SSL_HASH_SHA256: | 
					
						
							|  |  |  |             ssl->handshake->calc_verify = ssl_calc_verify_tls_sha256; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             return MBEDTLS_ERR_SSL_INVALID_VERIFY_HASH; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | #else /* !MBEDTLS_SSL_PROTO_TLS1_2 */
 | 
					
						
							|  |  |  |     (void) ssl; | 
					
						
							|  |  |  |     (void) md; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return MBEDTLS_ERR_SSL_INVALID_VERIFY_HASH; | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_SSL3) || defined(MBEDTLS_SSL_PROTO_TLS1) || \
 | 
					
						
							|  |  |  |     defined(MBEDTLS_SSL_PROTO_TLS1_1) | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_get_key_exchange_md_ssl_tls(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                             unsigned char *output, | 
					
						
							|  |  |  |                                             unsigned char *data, size_t data_len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  |     mbedtls_md5_context mbedtls_md5; | 
					
						
							|  |  |  |     mbedtls_sha1_context mbedtls_sha1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_init(&mbedtls_md5); | 
					
						
							|  |  |  |     mbedtls_sha1_init(&mbedtls_sha1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * digitally-signed struct { | 
					
						
							|  |  |  |      *     opaque md5_hash[16]; | 
					
						
							|  |  |  |      *     opaque sha_hash[20]; | 
					
						
							|  |  |  |      * }; | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * md5_hash | 
					
						
							|  |  |  |      *     MD5(ClientHello.random + ServerHello.random | 
					
						
							|  |  |  |      *                            + ServerParams); | 
					
						
							|  |  |  |      * sha_hash | 
					
						
							|  |  |  |      *     SHA(ClientHello.random + ServerHello.random | 
					
						
							|  |  |  |      *                            + ServerParams); | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_md5_starts_ret(&mbedtls_md5)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_md5_starts_ret", ret); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_md5_update_ret(&mbedtls_md5, | 
					
						
							|  |  |  |                                       ssl->handshake->randbytes, 64)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_md5_update_ret", ret); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_md5_update_ret(&mbedtls_md5, data, data_len)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_md5_update_ret", ret); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_md5_finish_ret(&mbedtls_md5, output)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_md5_finish_ret", ret); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_sha1_starts_ret(&mbedtls_sha1)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_sha1_starts_ret", ret); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_sha1_update_ret(&mbedtls_sha1, | 
					
						
							|  |  |  |                                        ssl->handshake->randbytes, 64)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_sha1_update_ret", ret); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_sha1_update_ret(&mbedtls_sha1, data, | 
					
						
							|  |  |  |                                        data_len)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_sha1_update_ret", ret); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_sha1_finish_ret(&mbedtls_sha1, | 
					
						
							|  |  |  |                                        output + 16)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_sha1_finish_ret", ret); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md5_free(&mbedtls_md5); | 
					
						
							|  |  |  |     mbedtls_sha1_free(&mbedtls_sha1); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL, | 
					
						
							|  |  |  |                                        MBEDTLS_SSL_ALERT_MSG_INTERNAL_ERROR); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_PROTO_SSL3 || MBEDTLS_SSL_PROTO_TLS1 || \
 | 
					
						
							|  |  |  |           MBEDTLS_SSL_PROTO_TLS1_1 */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_PROTO_TLS1) || defined(MBEDTLS_SSL_PROTO_TLS1_1) || \
 | 
					
						
							|  |  |  |     defined(MBEDTLS_SSL_PROTO_TLS1_2) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_get_key_exchange_md_tls1_2(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                            unsigned char *hash, size_t *hashlen, | 
					
						
							|  |  |  |                                            unsigned char *data, size_t data_len, | 
					
						
							|  |  |  |                                            mbedtls_md_type_t md_alg) | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     psa_status_t status; | 
					
						
							|  |  |  |     psa_hash_operation_t hash_operation = PSA_HASH_OPERATION_INIT; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     psa_algorithm_t hash_alg = mbedtls_psa_translate_md(md_alg); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(3, ("Perform PSA-based computation of digest of ServerKeyExchange")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((status = psa_hash_setup(&hash_operation, | 
					
						
							|  |  |  |                                  hash_alg)) != PSA_SUCCESS) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "psa_hash_setup", status); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((status = psa_hash_update(&hash_operation, ssl->handshake->randbytes, | 
					
						
							|  |  |  |                                   64)) != PSA_SUCCESS) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "psa_hash_update", status); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((status = psa_hash_update(&hash_operation, | 
					
						
							|  |  |  |                                   data, data_len)) != PSA_SUCCESS) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "psa_hash_update", status); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((status = psa_hash_finish(&hash_operation, hash, PSA_HASH_MAX_SIZE, | 
					
						
							|  |  |  |                                   hashlen)) != PSA_SUCCESS) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "psa_hash_finish", status); | 
					
						
							|  |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL, | 
					
						
							|  |  |  |                                        MBEDTLS_SSL_ALERT_MSG_INTERNAL_ERROR); | 
					
						
							|  |  |  |         switch (status) { | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             case PSA_ERROR_NOT_SUPPORTED: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                 return MBEDTLS_ERR_MD_FEATURE_UNAVAILABLE; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             case PSA_ERROR_BAD_STATE: /* Intentional fallthrough */ | 
					
						
							|  |  |  |             case PSA_ERROR_BUFFER_TOO_SMALL: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                 return MBEDTLS_ERR_MD_BAD_INPUT_DATA; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             case PSA_ERROR_INSUFFICIENT_MEMORY: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                 return MBEDTLS_ERR_MD_ALLOC_FAILED; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |             default: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |                 return MBEDTLS_ERR_MD_HW_ACCEL_FAILED; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_get_key_exchange_md_tls1_2(mbedtls_ssl_context *ssl, | 
					
						
							|  |  |  |                                            unsigned char *hash, size_t *hashlen, | 
					
						
							|  |  |  |                                            unsigned char *data, size_t data_len, | 
					
						
							|  |  |  |                                            mbedtls_md_type_t md_alg) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  |     mbedtls_md_context_t ctx; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     const mbedtls_md_info_t *md_info = mbedtls_md_info_from_type(md_alg); | 
					
						
							|  |  |  |     *hashlen = mbedtls_md_get_size(md_info); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_DEBUG_MSG(3, ("Perform mbedtls-based computation of digest of ServerKeyExchange")); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md_init(&ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * digitally-signed struct { | 
					
						
							|  |  |  |      *     opaque client_random[32]; | 
					
						
							|  |  |  |      *     opaque server_random[32]; | 
					
						
							|  |  |  |      *     ServerDHParams params; | 
					
						
							|  |  |  |      * }; | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_md_setup(&ctx, md_info, 0)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_md_setup", ret); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_md_starts(&ctx)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_md_starts", ret); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_md_update(&ctx, ssl->handshake->randbytes, 64)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_md_update", ret); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_md_update(&ctx, data, data_len)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_md_update", ret); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_md_finish(&ctx, hash)) != 0) { | 
					
						
							|  |  |  |         MBEDTLS_SSL_DEBUG_RET(1, "mbedtls_md_finish", ret); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md_free(&ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         mbedtls_ssl_send_alert_message(ssl, MBEDTLS_SSL_ALERT_LEVEL_FATAL, | 
					
						
							|  |  |  |                                        MBEDTLS_SSL_ALERT_MSG_INTERNAL_ERROR); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif /* MBEDTLS_SSL_PROTO_TLS1 || MBEDTLS_SSL_PROTO_TLS1_1 || \
 | 
					
						
							|  |  |  |           MBEDTLS_SSL_PROTO_TLS1_2 */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_TLS_C */
 |