Manuel Pégourié-Gonnard | fd6d897 | 2015-05-15 12:09:00 +0200 | [diff] [blame] | 1 | /** |
| 2 | * \file ssl_ticket.h |
| 3 | * |
| 4 | * \brief TLS server ticket callbacks implementation |
Darryl Green | a40a101 | 2018-01-05 15:33:17 +0000 | [diff] [blame] | 5 | */ |
| 6 | /* |
Bence Szépkúti | 1e14827 | 2020-08-07 13:07:28 +0200 | [diff] [blame] | 7 | * Copyright The Mbed TLS Contributors |
Manuel Pégourié-Gonnard | 37ff140 | 2015-09-04 14:21:07 +0200 | [diff] [blame] | 8 | * SPDX-License-Identifier: Apache-2.0 |
| 9 | * |
| 10 | * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 11 | * not use this file except in compliance with the License. |
| 12 | * You may obtain a copy of the License at |
| 13 | * |
| 14 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 15 | * |
| 16 | * Unless required by applicable law or agreed to in writing, software |
| 17 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 18 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 19 | * See the License for the specific language governing permissions and |
| 20 | * limitations under the License. |
Manuel Pégourié-Gonnard | fd6d897 | 2015-05-15 12:09:00 +0200 | [diff] [blame] | 21 | */ |
| 22 | #ifndef MBEDTLS_SSL_TICKET_H |
| 23 | #define MBEDTLS_SSL_TICKET_H |
Mateusz Starzyk | 846f021 | 2021-05-19 19:44:07 +0200 | [diff] [blame] | 24 | #include "mbedtls/private_access.h" |
Manuel Pégourié-Gonnard | fd6d897 | 2015-05-15 12:09:00 +0200 | [diff] [blame] | 25 | |
Bence Szépkúti | c662b36 | 2021-05-27 11:25:03 +0200 | [diff] [blame] | 26 | #include "mbedtls/build_info.h" |
Ron Eldor | 8b0cf2e | 2018-02-14 16:02:41 +0200 | [diff] [blame] | 27 | |
Manuel Pégourié-Gonnard | 4214e3a | 2015-05-25 19:34:49 +0200 | [diff] [blame] | 28 | /* |
| 29 | * This implementation of the session ticket callbacks includes key |
| 30 | * management, rotating the keys periodically in order to preserve forward |
| 31 | * secrecy, when MBEDTLS_HAVE_TIME is defined. |
| 32 | */ |
| 33 | |
Jaeden Amero | 6609aef | 2019-07-04 20:01:14 +0100 | [diff] [blame] | 34 | #include "mbedtls/ssl.h" |
| 35 | #include "mbedtls/cipher.h" |
Manuel Pégourié-Gonnard | fd6d897 | 2015-05-15 12:09:00 +0200 | [diff] [blame] | 36 | |
Gabor Mezei | 2a02051 | 2022-03-10 15:15:46 +0100 | [diff] [blame] | 37 | #if defined(MBEDTLS_USE_PSA_CRYPTO) |
| 38 | #include "psa/crypto.h" |
| 39 | #endif |
| 40 | |
Manuel Pégourié-Gonnard | 0849a0a | 2015-05-20 11:34:54 +0200 | [diff] [blame] | 41 | #if defined(MBEDTLS_THREADING_C) |
Jaeden Amero | 6609aef | 2019-07-04 20:01:14 +0100 | [diff] [blame] | 42 | #include "mbedtls/threading.h" |
Manuel Pégourié-Gonnard | 0849a0a | 2015-05-20 11:34:54 +0200 | [diff] [blame] | 43 | #endif |
| 44 | |
Manuel Pégourié-Gonnard | fd6d897 | 2015-05-15 12:09:00 +0200 | [diff] [blame] | 45 | #ifdef __cplusplus |
| 46 | extern "C" { |
| 47 | #endif |
| 48 | |
Glenn Strauss | a941b62 | 2022-02-09 15:24:56 -0500 | [diff] [blame] | 49 | #define MBEDTLS_SSL_TICKET_MAX_KEY_BYTES 32 /*!< Max supported key length in bytes */ |
| 50 | #define MBEDTLS_SSL_TICKET_KEY_NAME_BYTES 4 /*!< key name length in bytes */ |
| 51 | |
Manuel Pégourié-Gonnard | d59675d | 2015-05-19 15:28:00 +0200 | [diff] [blame] | 52 | /** |
Manuel Pégourié-Gonnard | 887674a | 2015-05-25 11:00:19 +0200 | [diff] [blame] | 53 | * \brief Information for session ticket protection |
| 54 | */ |
Dawid Drozd | 428cc52 | 2018-07-24 10:02:47 +0200 | [diff] [blame] | 55 | typedef struct mbedtls_ssl_ticket_key |
Manuel Pégourié-Gonnard | 887674a | 2015-05-25 11:00:19 +0200 | [diff] [blame] | 56 | { |
Glenn Strauss | a941b62 | 2022-02-09 15:24:56 -0500 | [diff] [blame] | 57 | unsigned char MBEDTLS_PRIVATE(name)[MBEDTLS_SSL_TICKET_KEY_NAME_BYTES]; |
| 58 | /*!< random key identifier */ |
Mateusz Starzyk | 846f021 | 2021-05-19 19:44:07 +0200 | [diff] [blame] | 59 | uint32_t MBEDTLS_PRIVATE(generation_time); /*!< key generation timestamp (seconds) */ |
Gabor Mezei | 2a02051 | 2022-03-10 15:15:46 +0100 | [diff] [blame] | 60 | #if !defined(MBEDTLS_USE_PSA_CRYPTO) |
Mateusz Starzyk | 846f021 | 2021-05-19 19:44:07 +0200 | [diff] [blame] | 61 | mbedtls_cipher_context_t MBEDTLS_PRIVATE(ctx); /*!< context for auth enc/decryption */ |
Gabor Mezei | 2a02051 | 2022-03-10 15:15:46 +0100 | [diff] [blame] | 62 | #else |
| 63 | mbedtls_svc_key_id_t MBEDTLS_PRIVATE(key); /*!< key used for auth enc/decryption */ |
| 64 | psa_algorithm_t MBEDTLS_PRIVATE(alg); /*!< algorithm of auth enc/decryption */ |
| 65 | psa_key_type_t MBEDTLS_PRIVATE(key_type); /*!< key type */ |
| 66 | size_t MBEDTLS_PRIVATE(key_bits); /*!< key length in bits */ |
| 67 | #endif |
Manuel Pégourié-Gonnard | 887674a | 2015-05-25 11:00:19 +0200 | [diff] [blame] | 68 | } |
| 69 | mbedtls_ssl_ticket_key; |
| 70 | |
| 71 | /** |
Manuel Pégourié-Gonnard | d59675d | 2015-05-19 15:28:00 +0200 | [diff] [blame] | 72 | * \brief Context for session ticket handling functions |
| 73 | */ |
Dawid Drozd | 428cc52 | 2018-07-24 10:02:47 +0200 | [diff] [blame] | 74 | typedef struct mbedtls_ssl_ticket_context |
Manuel Pégourié-Gonnard | d59675d | 2015-05-19 15:28:00 +0200 | [diff] [blame] | 75 | { |
Mateusz Starzyk | 846f021 | 2021-05-19 19:44:07 +0200 | [diff] [blame] | 76 | mbedtls_ssl_ticket_key MBEDTLS_PRIVATE(keys)[2]; /*!< ticket protection keys */ |
| 77 | unsigned char MBEDTLS_PRIVATE(active); /*!< index of the currently active key */ |
Manuel Pégourié-Gonnard | d59675d | 2015-05-19 15:28:00 +0200 | [diff] [blame] | 78 | |
Mateusz Starzyk | 846f021 | 2021-05-19 19:44:07 +0200 | [diff] [blame] | 79 | uint32_t MBEDTLS_PRIVATE(ticket_lifetime); /*!< lifetime of tickets in seconds */ |
Manuel Pégourié-Gonnard | d59675d | 2015-05-19 15:28:00 +0200 | [diff] [blame] | 80 | |
| 81 | /** Callback for getting (pseudo-)random numbers */ |
Mateusz Starzyk | 846f021 | 2021-05-19 19:44:07 +0200 | [diff] [blame] | 82 | int (*MBEDTLS_PRIVATE(f_rng))(void *, unsigned char *, size_t); |
| 83 | void *MBEDTLS_PRIVATE(p_rng); /*!< context for the RNG function */ |
Manuel Pégourié-Gonnard | 0849a0a | 2015-05-20 11:34:54 +0200 | [diff] [blame] | 84 | |
| 85 | #if defined(MBEDTLS_THREADING_C) |
Mateusz Starzyk | 846f021 | 2021-05-19 19:44:07 +0200 | [diff] [blame] | 86 | mbedtls_threading_mutex_t MBEDTLS_PRIVATE(mutex); |
Manuel Pégourié-Gonnard | 0849a0a | 2015-05-20 11:34:54 +0200 | [diff] [blame] | 87 | #endif |
Manuel Pégourié-Gonnard | d59675d | 2015-05-19 15:28:00 +0200 | [diff] [blame] | 88 | } |
| 89 | mbedtls_ssl_ticket_context; |
| 90 | |
| 91 | /** |
| 92 | * \brief Initialize a ticket context. |
| 93 | * (Just make it ready for mbedtls_ssl_ticket_setup() |
| 94 | * or mbedtls_ssl_ticket_free().) |
| 95 | * |
| 96 | * \param ctx Context to be initialized |
| 97 | */ |
| 98 | void mbedtls_ssl_ticket_init( mbedtls_ssl_ticket_context *ctx ); |
| 99 | |
| 100 | /** |
| 101 | * \brief Prepare context to be actually used |
| 102 | * |
| 103 | * \param ctx Context to be set up |
Manuel Pégourié-Gonnard | ad5390f | 2021-06-15 11:29:26 +0200 | [diff] [blame] | 104 | * \param f_rng RNG callback function (mandatory) |
Manuel Pégourié-Gonnard | d59675d | 2015-05-19 15:28:00 +0200 | [diff] [blame] | 105 | * \param p_rng RNG callback context |
Manuel Pégourié-Gonnard | dc54ff8 | 2015-06-25 12:44:46 +0200 | [diff] [blame] | 106 | * \param cipher AEAD cipher to use for ticket protection. |
| 107 | * Recommended value: MBEDTLS_CIPHER_AES_256_GCM. |
Manuel Pégourié-Gonnard | d59675d | 2015-05-19 15:28:00 +0200 | [diff] [blame] | 108 | * \param lifetime Tickets lifetime in seconds |
Manuel Pégourié-Gonnard | dc54ff8 | 2015-06-25 12:44:46 +0200 | [diff] [blame] | 109 | * Recommended value: 86400 (one day). |
Manuel Pégourié-Gonnard | d59675d | 2015-05-19 15:28:00 +0200 | [diff] [blame] | 110 | * |
Manuel Pégourié-Gonnard | a0adc1b | 2015-05-25 10:35:16 +0200 | [diff] [blame] | 111 | * \note It is highly recommended to select a cipher that is at |
Tobias Nießen | 1e8ca12 | 2021-05-10 19:53:15 +0200 | [diff] [blame] | 112 | * least as strong as the strongest ciphersuite |
Manuel Pégourié-Gonnard | a0adc1b | 2015-05-25 10:35:16 +0200 | [diff] [blame] | 113 | * supported. Usually that means a 256-bit key. |
| 114 | * |
Manuel Pégourié-Gonnard | dc54ff8 | 2015-06-25 12:44:46 +0200 | [diff] [blame] | 115 | * \note The lifetime of the keys is twice the lifetime of tickets. |
Glenn Strauss | a950938 | 2022-02-02 23:32:18 -0500 | [diff] [blame] | 116 | * It is recommended to pick a reasonable lifetime so as not |
Manuel Pégourié-Gonnard | dc54ff8 | 2015-06-25 12:44:46 +0200 | [diff] [blame] | 117 | * to negate the benefits of forward secrecy. |
| 118 | * |
Manuel Pégourié-Gonnard | 81abefd | 2015-05-29 12:53:47 +0200 | [diff] [blame] | 119 | * \return 0 if successful, |
Manuel Pégourié-Gonnard | d59675d | 2015-05-19 15:28:00 +0200 | [diff] [blame] | 120 | * or a specific MBEDTLS_ERR_XXX error code |
| 121 | */ |
| 122 | int mbedtls_ssl_ticket_setup( mbedtls_ssl_ticket_context *ctx, |
| 123 | int (*f_rng)(void *, unsigned char *, size_t), void *p_rng, |
Manuel Pégourié-Gonnard | a0adc1b | 2015-05-25 10:35:16 +0200 | [diff] [blame] | 124 | mbedtls_cipher_type_t cipher, |
Manuel Pégourié-Gonnard | d59675d | 2015-05-19 15:28:00 +0200 | [diff] [blame] | 125 | uint32_t lifetime ); |
| 126 | |
| 127 | /** |
Glenn Strauss | a950938 | 2022-02-02 23:32:18 -0500 | [diff] [blame] | 128 | * \brief Rotate session ticket encryption key to new specified key. |
| 129 | * Provides for external control of session ticket encryption |
| 130 | * key rotation, e.g. for synchronization between different |
| 131 | * machines. If this function is not used, or if not called |
| 132 | * before ticket lifetime expires, then a new session ticket |
| 133 | * encryption key is generated internally in order to avoid |
| 134 | * unbounded session ticket encryption key lifetimes. |
| 135 | * |
| 136 | * \param ctx Context to be set up |
| 137 | * \param name Session ticket encryption key name |
| 138 | * \param nlength Session ticket encryption key name length in bytes |
| 139 | * \param k Session ticket encryption key |
| 140 | * \param klength Session ticket encryption key length in bytes |
| 141 | * \param lifetime Tickets lifetime in seconds |
| 142 | * Recommended value: 86400 (one day). |
| 143 | * |
| 144 | * \note \c name and \c k are recommended to be cryptographically |
| 145 | * random data. |
| 146 | * |
| 147 | * \note \c nlength must match sizeof( ctx->name ) |
| 148 | * |
| 149 | * \note \c klength must be sufficient for use by cipher specified |
| 150 | * to \c mbedtls_ssl_ticket_setup |
| 151 | * |
| 152 | * \note The lifetime of the keys is twice the lifetime of tickets. |
| 153 | * It is recommended to pick a reasonable lifetime so as not |
| 154 | * to negate the benefits of forward secrecy. |
| 155 | * |
| 156 | * \return 0 if successful, |
| 157 | * or a specific MBEDTLS_ERR_XXX error code |
| 158 | */ |
| 159 | int mbedtls_ssl_ticket_rotate( mbedtls_ssl_ticket_context *ctx, |
| 160 | const unsigned char *name, size_t nlength, |
| 161 | const unsigned char *k, size_t klength, |
| 162 | uint32_t lifetime ); |
| 163 | |
| 164 | /** |
Manuel Pégourié-Gonnard | d59675d | 2015-05-19 15:28:00 +0200 | [diff] [blame] | 165 | * \brief Implementation of the ticket write callback |
| 166 | * |
Antonin Décimo | 36e89b5 | 2019-01-23 15:24:37 +0100 | [diff] [blame] | 167 | * \note See \c mbedtls_ssl_ticket_write_t for description |
Manuel Pégourié-Gonnard | d59675d | 2015-05-19 15:28:00 +0200 | [diff] [blame] | 168 | */ |
| 169 | mbedtls_ssl_ticket_write_t mbedtls_ssl_ticket_write; |
| 170 | |
| 171 | /** |
| 172 | * \brief Implementation of the ticket parse callback |
| 173 | * |
Antonin Décimo | 36e89b5 | 2019-01-23 15:24:37 +0100 | [diff] [blame] | 174 | * \note See \c mbedtls_ssl_ticket_parse_t for description |
Manuel Pégourié-Gonnard | d59675d | 2015-05-19 15:28:00 +0200 | [diff] [blame] | 175 | */ |
| 176 | mbedtls_ssl_ticket_parse_t mbedtls_ssl_ticket_parse; |
| 177 | |
| 178 | /** |
| 179 | * \brief Free a context's content and zeroize it. |
| 180 | * |
| 181 | * \param ctx Context to be cleaned up |
| 182 | */ |
| 183 | void mbedtls_ssl_ticket_free( mbedtls_ssl_ticket_context *ctx ); |
Manuel Pégourié-Gonnard | fd6d897 | 2015-05-15 12:09:00 +0200 | [diff] [blame] | 184 | |
| 185 | #ifdef __cplusplus |
| 186 | } |
| 187 | #endif |
| 188 | |
| 189 | #endif /* ssl_ticket.h */ |