| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  DTLS cookie callbacks implementation | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2020-09-05 12:53:20 +02:00
										 |  |  |  *  Copyright The Mbed TLS Contributors | 
					
						
							| 
									
										
										
										
											2024-01-30 14:09:13 +01:00
										 |  |  |  *  SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |  */ | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * These session callbacks use a simple chained list | 
					
						
							|  |  |  |  * to store and retrieve the session information. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #include "common.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_SSL_COOKIE_C)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "mbedtls/platform.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "mbedtls/ssl_cookie.h"
 | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #include "ssl_misc.h"
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  | #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/constant_time.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  | #include "mbedtls/psa_util.h"
 | 
					
						
							|  |  |  | /* Define a local translating function to save code size by not using too many
 | 
					
						
							|  |  |  |  * arguments in each translating place. */ | 
					
						
							|  |  |  | static int local_err_translation(psa_status_t status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return psa_status_to_mbedtls(status, psa_to_ssl_errors, | 
					
						
							|  |  |  |                                  ARRAY_LENGTH(psa_to_ssl_errors), | 
					
						
							|  |  |  |                                  psa_generic_status_to_mbedtls); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #define PSA_TO_MBEDTLS_ERR(status) local_err_translation(status)
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  |  * If DTLS is in use, then at least one of SHA-256 or SHA-384 is | 
					
						
							|  |  |  |  * available. Try SHA-256 first as 384 wastes resources | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #if defined(MBEDTLS_MD_CAN_SHA256)
 | 
					
						
							|  |  |  | #define COOKIE_MD           MBEDTLS_MD_SHA256
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #define COOKIE_MD_OUTLEN    32
 | 
					
						
							|  |  |  | #define COOKIE_HMAC_LEN     28
 | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #elif defined(MBEDTLS_MD_CAN_SHA384)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #define COOKIE_MD           MBEDTLS_MD_SHA384
 | 
					
						
							|  |  |  | #define COOKIE_MD_OUTLEN    48
 | 
					
						
							|  |  |  | #define COOKIE_HMAC_LEN     28
 | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #error "DTLS hello verify needs SHA-256 or SHA-384"
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Cookies are formed of a 4-bytes timestamp (or serial number) and | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  |  * an HMAC of timestamp and client ID. | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | #define COOKIE_LEN      (4 + COOKIE_HMAC_LEN)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_cookie_init(mbedtls_ssl_cookie_ctx *ctx) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  |     ctx->psa_hmac_key = MBEDTLS_SVC_KEY_ID_INIT; | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md_init(&ctx->hmac_ctx); | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if !defined(MBEDTLS_HAVE_TIME)
 | 
					
						
							|  |  |  |     ctx->serial = 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     ctx->timeout = MBEDTLS_SSL_COOKIE_TIMEOUT; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #if !defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_THREADING_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mutex_init(&ctx->mutex); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #endif /* !MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_cookie_set_timeout(mbedtls_ssl_cookie_ctx *ctx, unsigned long delay) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     ctx->timeout = delay; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | void mbedtls_ssl_cookie_free(mbedtls_ssl_cookie_ctx *ctx) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-08-31 15:25:10 +02:00
										 |  |  |     if (ctx == NULL) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  |     psa_destroy_key(ctx->psa_hmac_key); | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_md_free(&ctx->hmac_ctx); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_THREADING_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_mutex_free(&ctx->mutex); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(ctx, sizeof(mbedtls_ssl_cookie_ctx)); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_cookie_setup(mbedtls_ssl_cookie_ctx *ctx, | 
					
						
							|  |  |  |                              int (*f_rng)(void *, unsigned char *, size_t), | 
					
						
							|  |  |  |                              void *p_rng) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  |     psa_key_attributes_t attributes = PSA_KEY_ATTRIBUTES_INIT; | 
					
						
							|  |  |  |     psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; | 
					
						
							|  |  |  |     psa_algorithm_t alg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     (void) f_rng; | 
					
						
							|  |  |  |     (void) p_rng; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     alg = mbedtls_md_psa_alg_from_type(COOKIE_MD); | 
					
						
							|  |  |  |     if (alg == 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_BAD_INPUT_DATA; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ctx->psa_hmac_alg = PSA_ALG_TRUNCATED_MAC(PSA_ALG_HMAC(alg), | 
					
						
							|  |  |  |                                               COOKIE_HMAC_LEN); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     psa_set_key_usage_flags(&attributes, PSA_KEY_USAGE_VERIFY_MESSAGE | | 
					
						
							|  |  |  |                             PSA_KEY_USAGE_SIGN_MESSAGE); | 
					
						
							|  |  |  |     psa_set_key_algorithm(&attributes, ctx->psa_hmac_alg); | 
					
						
							|  |  |  |     psa_set_key_type(&attributes, PSA_KEY_TYPE_HMAC); | 
					
						
							|  |  |  |     psa_set_key_bits(&attributes, PSA_BYTES_TO_BITS(COOKIE_MD_OUTLEN)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((status = psa_generate_key(&attributes, | 
					
						
							|  |  |  |                                    &ctx->psa_hmac_key)) != PSA_SUCCESS) { | 
					
						
							|  |  |  |         return PSA_TO_MBEDTLS_ERR(status); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     unsigned char key[COOKIE_MD_OUTLEN]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = f_rng(p_rng, key, sizeof(key))) != 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = mbedtls_md_setup(&ctx->hmac_ctx, mbedtls_md_info_from_type(COOKIE_MD), 1); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = mbedtls_md_hmac_starts(&ctx->hmac_ctx, key, sizeof(key)); | 
					
						
							|  |  |  |     if (ret != 0) { | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(key, sizeof(key)); | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							| 
									
										
										
										
											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-09-24 20:04:06 -07:00
										 |  |  | #if !defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Generate the HMAC part of a cookie | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2022-07-18 14:48:00 +02:00
										 |  |  | MBEDTLS_CHECK_RETURN_CRITICAL | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | static int ssl_cookie_hmac(mbedtls_md_context_t *hmac_ctx, | 
					
						
							|  |  |  |                            const unsigned char time[4], | 
					
						
							|  |  |  |                            unsigned char **p, unsigned char *end, | 
					
						
							|  |  |  |                            const unsigned char *cli_id, size_t cli_id_len) | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     unsigned char hmac_out[COOKIE_MD_OUTLEN]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     MBEDTLS_SSL_CHK_BUF_PTR(*p, end, COOKIE_HMAC_LEN); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_md_hmac_reset(hmac_ctx) != 0 || | 
					
						
							|  |  |  |         mbedtls_md_hmac_update(hmac_ctx, time, 4) != 0 || | 
					
						
							|  |  |  |         mbedtls_md_hmac_update(hmac_ctx, cli_id, cli_id_len) != 0 || | 
					
						
							|  |  |  |         mbedtls_md_hmac_finish(hmac_ctx, hmac_out) != 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERR_SSL_INTERNAL_ERROR; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     memcpy(*p, hmac_out, COOKIE_HMAC_LEN); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     *p += COOKIE_HMAC_LEN; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #endif /* !MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Generate cookie for DTLS ClientHello verification | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_cookie_write(void *p_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
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  |     psa_mac_operation_t operation = PSA_MAC_OPERATION_INIT; | 
					
						
							|  |  |  |     psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; | 
					
						
							|  |  |  |     size_t sign_mac_length = 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     mbedtls_ssl_cookie_ctx *ctx = (mbedtls_ssl_cookie_ctx *) p_ctx; | 
					
						
							|  |  |  |     unsigned long t; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ctx == NULL || cli_id == NULL) { | 
					
						
							|  |  |  |         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_CHK_BUF_PTR(*p, end, COOKIE_LEN); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_HAVE_TIME)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     t = (unsigned long) mbedtls_time(NULL); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  |     t = ctx->serial++; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     MBEDTLS_PUT_UINT32_BE(t, *p, 0); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     *p += 4; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  |     status = psa_mac_sign_setup(&operation, ctx->psa_hmac_key, | 
					
						
							|  |  |  |                                 ctx->psa_hmac_alg); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         ret = PSA_TO_MBEDTLS_ERR(status); | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     status = psa_mac_update(&operation, *p - 4, 4); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         ret = PSA_TO_MBEDTLS_ERR(status); | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     status = psa_mac_update(&operation, cli_id, cli_id_len); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         ret = PSA_TO_MBEDTLS_ERR(status); | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     status = psa_mac_sign_finish(&operation, *p, COOKIE_MD_OUTLEN, | 
					
						
							|  |  |  |                                  &sign_mac_length); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         ret = PSA_TO_MBEDTLS_ERR(status); | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     *p += COOKIE_HMAC_LEN; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = 0; | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_THREADING_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_mutex_lock(&ctx->mutex)) != 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_SSL_INTERNAL_ERROR, ret); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     ret = ssl_cookie_hmac(&ctx->hmac_ctx, *p - 4, | 
					
						
							|  |  |  |                           p, end, cli_id, cli_id_len); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_THREADING_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_mutex_unlock(&ctx->mutex) != 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_SSL_INTERNAL_ERROR, | 
					
						
							|  |  |  |                                  MBEDTLS_ERR_THREADING_MUTEX_ERROR); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  | exit: | 
					
						
							|  |  |  |     status = psa_mac_abort(&operation); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         ret = PSA_TO_MBEDTLS_ERR(status); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Check a cookie | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  | int mbedtls_ssl_cookie_check(void *p_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
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  |     psa_mac_operation_t operation = PSA_MAC_OPERATION_INIT; | 
					
						
							|  |  |  |     psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     unsigned char ref_hmac[COOKIE_HMAC_LEN]; | 
					
						
							|  |  |  |     unsigned char *p = ref_hmac; | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |     mbedtls_ssl_cookie_ctx *ctx = (mbedtls_ssl_cookie_ctx *) p_ctx; | 
					
						
							|  |  |  |     unsigned long cur_time, cookie_time; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ctx == NULL || cli_id == 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 (cookie_len != COOKIE_LEN) { | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  |     status = psa_mac_verify_setup(&operation, ctx->psa_hmac_key, | 
					
						
							|  |  |  |                                   ctx->psa_hmac_alg); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         ret = PSA_TO_MBEDTLS_ERR(status); | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     status = psa_mac_update(&operation, cookie, 4); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         ret = PSA_TO_MBEDTLS_ERR(status); | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     status = psa_mac_update(&operation, cli_id, | 
					
						
							|  |  |  |                             cli_id_len); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         ret = PSA_TO_MBEDTLS_ERR(status); | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     status = psa_mac_verify_finish(&operation, cookie + 4, | 
					
						
							|  |  |  |                                    COOKIE_HMAC_LEN); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         ret = PSA_TO_MBEDTLS_ERR(status); | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = 0; | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #if defined(MBEDTLS_THREADING_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if ((ret = mbedtls_mutex_lock(&ctx->mutex)) != 0) { | 
					
						
							|  |  |  |         return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_SSL_INTERNAL_ERROR, ret); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ssl_cookie_hmac(&ctx->hmac_ctx, cookie, | 
					
						
							|  |  |  |                         &p, p + sizeof(ref_hmac), | 
					
						
							|  |  |  |                         cli_id, cli_id_len) != 0) { | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  |         ret = -1; | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_THREADING_C)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (mbedtls_mutex_unlock(&ctx->mutex) != 0) { | 
					
						
							|  |  |  |         ret = MBEDTLS_ERROR_ADD(MBEDTLS_ERR_SSL_INTERNAL_ERROR, | 
					
						
							|  |  |  |                                 MBEDTLS_ERR_THREADING_MUTEX_ERROR); | 
					
						
							| 
									
										
										
										
											2021-12-21 12:54:05 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     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
										 |  |  |     if (mbedtls_ct_memcmp(cookie + 4, ref_hmac, sizeof(ref_hmac)) != 0) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         ret = -1; | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(MBEDTLS_HAVE_TIME)
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     cur_time = (unsigned long) mbedtls_time(NULL); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | #else
 | 
					
						
							|  |  |  |     cur_time = ctx->serial; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  |     cookie_time = (unsigned long) MBEDTLS_GET_UINT32_BE(cookie, 0); | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     if (ctx->timeout != 0 && cur_time - cookie_time > ctx->timeout) { | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  |         ret = -1; | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-20 12:46:03 +01:00
										 |  |  | exit: | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #if defined(MBEDTLS_USE_PSA_CRYPTO)
 | 
					
						
							|  |  |  |     status = psa_mac_abort(&operation); | 
					
						
							|  |  |  |     if (status != PSA_SUCCESS) { | 
					
						
							|  |  |  |         ret = PSA_TO_MBEDTLS_ERR(status); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     mbedtls_platform_zeroize(ref_hmac, sizeof(ref_hmac)); | 
					
						
							| 
									
										
										
										
											2023-09-24 20:04:06 -07:00
										 |  |  | #endif /* MBEDTLS_USE_PSA_CRYPTO */
 | 
					
						
							| 
									
										
										
										
											2023-04-18 10:38:24 +02:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2018-02-08 19:04:43 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif /* MBEDTLS_SSL_COOKIE_C */
 |