blob: 6fd23c97a91da3cc69ec9ab3afd2fd81c8bc4a2c [file] [log] [blame]
gabor-mezei-arm944c1072021-09-27 11:28:54 +02001/**
2 * Constant-time functions
3 *
4 * Copyright The Mbed TLS Contributors
5 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License"); you may
8 * not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 */
19
Gabor Mezei6e0e9902021-10-19 11:27:17 +020020#ifndef MBEDTLS_CONSTANT_TIME_INTERNAL_H
21#define MBEDTLS_CONSTANT_TIME_INTERNAL_H
22
gabor-mezei-arm944c1072021-09-27 11:28:54 +020023#include "common.h"
24
gabor-mezei-arm097d4f52021-09-27 12:55:33 +020025#if defined(MBEDTLS_BIGNUM_C)
26#include "mbedtls/bignum.h"
27#endif
28
gabor-mezei-armcb4317b2021-09-27 14:28:31 +020029#if defined(MBEDTLS_SSL_TLS_C)
30#include "mbedtls/ssl_internal.h"
31#endif
32
gabor-mezei-arm944c1072021-09-27 11:28:54 +020033#include <stddef.h>
34
gabor-mezei-arm944c1072021-09-27 11:28:54 +020035
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +020036/** Turn a value into a mask:
37 * - if \p value == 0, return the all-bits 0 mask, aka 0
Gabor Mezei4b4e4d82021-10-18 16:28:27 +020038 * - otherwise, return the all-bits 1 mask, aka (unsigned) -1
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +020039 *
40 * This function can be used to write constant-time code by replacing branches
41 * with bit operations using masks.
42 *
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +020043 * \param value The value to analyze.
44 *
45 * \return Zero if \p value is zero, otherwise all-bits-one.
46 */
gabor-mezei-armc11cac92021-09-27 11:40:03 +020047unsigned mbedtls_cf_uint_mask( unsigned value );
gabor-mezei-armd361ccd2021-09-27 11:49:42 +020048
Gabor Mezei61bf64f2021-10-20 11:17:43 +020049#if defined(MBEDTLS_SSL_SOME_SUITES_USE_TLS_CBC)
50
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +020051/** Turn a value into a mask:
52 * - if \p value == 0, return the all-bits 0 mask, aka 0
53 * - otherwise, return the all-bits 1 mask, aka (size_t) -1
54 *
55 * This function can be used to write constant-time code by replacing branches
56 * with bit operations using masks.
57 *
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +020058 * \param value The value to analyze.
59 *
60 * \return Zero if \p value is zero, otherwise all-bits-one.
61 */
gabor-mezei-arm2f2c0be2021-08-10 20:56:21 +020062size_t mbedtls_cf_size_mask( size_t value );
gabor-mezei-arm4d6b1462021-09-27 11:53:54 +020063
Gabor Mezei61bf64f2021-10-20 11:17:43 +020064#endif /* MBEDTLS_SSL_SOME_SUITES_USE_TLS_CBC */
65
gabor-mezei-arm60febd52021-08-11 15:07:02 +020066#if defined(MBEDTLS_BIGNUM_C)
67
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +020068/** Turn a value into a mask:
69 * - if \p value == 0, return the all-bits 0 mask, aka 0
Gabor Mezei4b4e4d82021-10-18 16:28:27 +020070 * - otherwise, return the all-bits 1 mask, aka (mbedtls_mpi_uint) -1
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +020071 *
72 * This function can be used to write constant-time code by replacing branches
73 * with bit operations using masks.
74 *
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +020075 * \param value The value to analyze.
76 *
77 * \return Zero if \p value is zero, otherwise all-bits-one.
78 */
gabor-mezei-arm60febd52021-08-11 15:07:02 +020079mbedtls_mpi_uint mbedtls_cf_mpi_uint_mask( mbedtls_mpi_uint value );
80
81#endif /* MBEDTLS_BIGNUM_C */
82
Gabor Mezei2b358802021-10-18 17:05:06 +020083#if defined(MBEDTLS_SSL_SOME_SUITES_USE_TLS_CBC)
84
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +020085/** Constant-flow mask generation for "greater or equal" comparison:
86 * - if \p x >= \p y, return all-bits 1, that is (size_t) -1
87 * - otherwise, return all bits 0, that is 0
88 *
89 * This function can be used to write constant-time code by replacing branches
90 * with bit operations using masks.
91 *
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +020092 * \param x The first value to analyze.
93 * \param y The second value to analyze.
94 *
95 * \return All-bits-one if \p x is greater or equal than \p y,
96 * otherwise zero.
97 */
gabor-mezei-arm04087df2021-09-27 16:29:52 +020098size_t mbedtls_cf_size_mask_ge( size_t x,
99 size_t y );
gabor-mezei-arm96584dd2021-09-27 12:15:19 +0200100
Gabor Mezei2b358802021-10-18 17:05:06 +0200101#endif /* MBEDTLS_SSL_SOME_SUITES_USE_TLS_CBC */
102
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +0200103/** Constant-flow boolean "equal" comparison:
104 * return x == y
105 *
106 * This is equivalent to \p x == \p y, but is likely to be compiled
107 * to code using bitwise operation rather than a branch.
108 *
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +0200109 * \param x The first value to analyze.
110 * \param y The second value to analyze.
111 *
112 * \return 1 if \p x equals to \p y, otherwise 0.
113 */
gabor-mezei-arm1ffd0cc2021-08-11 17:28:49 +0200114unsigned mbedtls_cf_size_bool_eq( size_t x,
115 size_t y );
gabor-mezei-arm9d7bf092021-09-27 12:25:07 +0200116
gabor-mezei-arm097d4f52021-09-27 12:55:33 +0200117#if defined(MBEDTLS_BIGNUM_C)
118
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +0200119/** Decide if an integer is less than the other, without branches.
120 *
121 * This is equivalent to \p x < \p y, but is likely to be compiled
122 * to code using bitwise operation rather than a branch.
123 *
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +0200124 * \param x The first value to analyze.
125 * \param y The second value to analyze.
126 *
127 * \return 1 if \p x is less than \p y, otherwise 0.
128 */
gabor-mezei-arm097d4f52021-09-27 12:55:33 +0200129unsigned mbedtls_cf_mpi_uint_lt( const mbedtls_mpi_uint x,
130 const mbedtls_mpi_uint y );
131
132#endif /* MBEDTLS_BIGNUM_C */
gabor-mezei-arm75332532021-09-27 12:59:30 +0200133
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +0200134/** Choose between two integer values without branches.
135 *
136 * This is equivalent to `condition ? if1 : if0`, but is likely to be compiled
137 * to code using bitwise operation rather than a branch.
138 *
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +0200139 * \param condition Condition to test.
140 * \param if1 Value to use if \p condition is nonzero.
141 * \param if0 Value to use if \p condition is zero.
142 *
143 * \return \c if1 if \p condition is nonzero, otherwise \c if0.
144 */
gabor-mezei-arm5e488242021-08-10 20:36:09 +0200145unsigned mbedtls_cf_uint_if( unsigned condition,
gabor-mezei-arm04087df2021-09-27 16:29:52 +0200146 unsigned if1,
147 unsigned if0 );
gabor-mezei-arm75332532021-09-27 12:59:30 +0200148
gabor-mezei-arm043192d2021-09-27 13:17:15 +0200149#if defined(MBEDTLS_BIGNUM_C)
150
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +0200151/** Conditionally assign a value without branches.
152 *
153 * This is equivalent to `if ( condition ) dest = src`, but is likely
154 * to be compiled to code using bitwise operation rather than a branch.
155 *
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +0200156 * \param n \p dest and \p src must be arrays of limbs of size n.
157 * \param dest The MPI to conditionally assign to. This must point
158 * to an initialized MPI.
159 * \param src The MPI to be assigned from. This must point to an
160 * initialized MPI.
161 * \param condition Condition to test, must be 0 or 1.
162 */
gabor-mezei-arm043192d2021-09-27 13:17:15 +0200163void mbedtls_cf_mpi_uint_cond_assign( size_t n,
164 mbedtls_mpi_uint *dest,
165 const mbedtls_mpi_uint *src,
gabor-mezei-arm5e488242021-08-10 20:36:09 +0200166 unsigned char condition );
gabor-mezei-arm043192d2021-09-27 13:17:15 +0200167
168#endif /* MBEDTLS_BIGNUM_C */
gabor-mezei-arm7b23c0b2021-09-27 13:31:06 +0200169
Gabor Mezei2b358802021-10-18 17:05:06 +0200170#if defined(MBEDTLS_SSL_SOME_SUITES_USE_TLS_CBC)
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +0200171
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +0200172/** Conditional memcpy without branches.
173 *
174 * This is equivalent to `if ( c1 == c2 ) memcpy(dst, src, len)`, but is likely
175 * to be compiled to code using bitwise operation rather than a branch.
176 *
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +0200177 * \param dest The pointer to conditionally copy to.
Gabor Mezei4b4e4d82021-10-18 16:28:27 +0200178 * \param src The pointer to copy from. Shouldn't overlap with \p dest.
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +0200179 * \param len The number of bytes to copy.
180 * \param c1 The first value to analyze in the condition.
181 * \param c2 The second value to analyze in the condition.
182 */
gabor-mezei-arm5e488242021-08-10 20:36:09 +0200183void mbedtls_cf_memcpy_if_eq( unsigned char *dest,
gabor-mezei-armee06feb2021-09-27 13:34:25 +0200184 const unsigned char *src,
185 size_t len,
186 size_t c1, size_t c2 );
gabor-mezei-arm0f7b9e42021-09-27 13:57:45 +0200187
188/** Copy data from a secret position with constant flow.
189 *
190 * This function copies \p len bytes from \p src_base + \p offset_secret to \p
191 * dst, with a code flow and memory access pattern that does not depend on \p
192 * offset_secret, but only on \p offset_min, \p offset_max and \p len.
Gabor Mezei4b4e4d82021-10-18 16:28:27 +0200193 * Functionally equivalent to `memcpy(dst, src + offset_secret, len)`.
gabor-mezei-arm0f7b9e42021-09-27 13:57:45 +0200194 *
Gabor Mezei91deea72021-10-18 16:17:57 +0200195 * \param dest The destination buffer. This must point to a writable
gabor-mezei-arm0f7b9e42021-09-27 13:57:45 +0200196 * buffer of at least \p len bytes.
Gabor Mezei91deea72021-10-18 16:17:57 +0200197 * \param src The base of the source buffer. This must point to a
gabor-mezei-arm0f7b9e42021-09-27 13:57:45 +0200198 * readable buffer of at least \p offset_max + \p len
Gabor Mezei91deea72021-10-18 16:17:57 +0200199 * bytes. Shouldn't overlap with \p dest.
200 * \param offset The offset in the source buffer from which to copy.
gabor-mezei-arm0f7b9e42021-09-27 13:57:45 +0200201 * This must be no less than \p offset_min and no greater
202 * than \p offset_max.
Gabor Mezei91deea72021-10-18 16:17:57 +0200203 * \param offset_min The minimal value of \p offset.
204 * \param offset_max The maximal value of \p offset.
gabor-mezei-arm0f7b9e42021-09-27 13:57:45 +0200205 * \param len The number of bytes to copy.
206 */
Gabor Mezei91deea72021-10-18 16:17:57 +0200207void mbedtls_cf_memcpy_offset( unsigned char *dest,
208 const unsigned char *src,
209 size_t offset,
gabor-mezei-arm04087df2021-09-27 16:29:52 +0200210 size_t offset_min,
211 size_t offset_max,
gabor-mezei-arm0f7b9e42021-09-27 13:57:45 +0200212 size_t len );
gabor-mezei-armcb4317b2021-09-27 14:28:31 +0200213
gabor-mezei-armcb4317b2021-09-27 14:28:31 +0200214/** Compute the HMAC of variable-length data with constant flow.
215 *
216 * This function computes the HMAC of the concatenation of \p add_data and \p
217 * data, and does with a code flow and memory access pattern that does not
218 * depend on \p data_len_secret, but only on \p min_data_len and \p
219 * max_data_len. In particular, this function always reads exactly \p
220 * max_data_len bytes from \p data.
221 *
222 * \param ctx The HMAC context. It must have keys configured
223 * with mbedtls_md_hmac_starts() and use one of the
224 * following hashes: SHA-384, SHA-256, SHA-1 or MD-5.
225 * It is reset using mbedtls_md_hmac_reset() after
226 * the computation is complete to prepare for the
227 * next computation.
Gabor Mezei4b4e4d82021-10-18 16:28:27 +0200228 * \param add_data The first part of the message whose HMAC is being
229 * calculated. This must point to a readable buffer
230 * of \p add_data_len bytes.
gabor-mezei-armcb4317b2021-09-27 14:28:31 +0200231 * \param add_data_len The length of \p add_data in bytes.
Gabor Mezei4b4e4d82021-10-18 16:28:27 +0200232 * \param data The buffer containing the second part of the
233 * message. This must point to a readable buffer
234 * of \p max_data_len bytes.
gabor-mezei-armcb4317b2021-09-27 14:28:31 +0200235 * \param data_len_secret The length of the data to process in \p data.
236 * This must be no less than \p min_data_len and no
237 * greater than \p max_data_len.
Gabor Mezei4b4e4d82021-10-18 16:28:27 +0200238 * \param min_data_len The minimal length of the second part of the
Gabor Mezeida206512021-10-20 11:18:37 +0200239 * message, read from \p data.
Gabor Mezei4b4e4d82021-10-18 16:28:27 +0200240 * \param max_data_len The maximal length of the second part of the
Gabor Mezeida206512021-10-20 11:18:37 +0200241 * message, read from \p data.
gabor-mezei-armcb4317b2021-09-27 14:28:31 +0200242 * \param output The HMAC will be written here. This must point to
243 * a writable buffer of sufficient size to hold the
244 * HMAC value.
245 *
246 * \retval 0 on success.
Gabor Mezei4b4e4d82021-10-18 16:28:27 +0200247 * \retval #MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED
gabor-mezei-armcb4317b2021-09-27 14:28:31 +0200248 * The hardware accelerator failed.
249 */
gabor-mezei-arm04087df2021-09-27 16:29:52 +0200250int mbedtls_cf_hmac( mbedtls_md_context_t *ctx,
251 const unsigned char *add_data,
252 size_t add_data_len,
253 const unsigned char *data,
254 size_t data_len_secret,
255 size_t min_data_len,
256 size_t max_data_len,
257 unsigned char *output );
gabor-mezei-armcb4317b2021-09-27 14:28:31 +0200258
259#endif /* MBEDTLS_SSL_SOME_SUITES_USE_TLS_CBC */
gabor-mezei-armf52941e2021-09-27 16:11:12 +0200260
261#if defined(MBEDTLS_PKCS1_V15) && defined(MBEDTLS_RSA_C) && !defined(MBEDTLS_RSA_ALT)
262
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +0200263/** This function performs the unpadding part of a PKCS#1 v1.5 decryption
Gabor Mezei4b4e4d82021-10-18 16:28:27 +0200264 * operation (EME-PKCS1-v1_5 decoding).
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +0200265 *
Gabor Mezei4b4e4d82021-10-18 16:28:27 +0200266 * \note The return value from this function is a sensitive value
267 * (this is unusual). #MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE shouldn't happen
268 * in a well-written application, but 0 vs #MBEDTLS_ERR_RSA_INVALID_PADDING
269 * is often a situation that an attacker can provoke and leaking which
270 * one is the result is precisely the information the attacker wants.
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +0200271 *
272 * \param mode The mode of operation. This must be either
273 * #MBEDTLS_RSA_PRIVATE or #MBEDTLS_RSA_PUBLIC (deprecated).
Gabor Mezei4b4e4d82021-10-18 16:28:27 +0200274 * \param input The input buffer which is the payload inside PKCS#1v1.5
275 * encryption padding, called the "encoded message EM"
276 * by the terminology.
277 * \param ilen The length of the payload in the \p input buffer.
278 * \param output The buffer for the payload, called "message M" by the
279 * PKCS#1 terminology. This must be a writable buffer of
280 * length \p output_max_len bytes.
Gabor Mezei91deea72021-10-18 16:17:57 +0200281 * \param olen The address at which to store the length of
Gabor Mezei4b4e4d82021-10-18 16:28:27 +0200282 * the payload. This must not be \c NULL.
283 * \param output_max_len The length in bytes of the output buffer \p output.
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +0200284 *
Gabor Mezei4b4e4d82021-10-18 16:28:27 +0200285 * \return \c 0 on success.
286 * \return #MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE
287 * The output buffer is too small for the unpadded payload.
288 * \return #MBEDTLS_ERR_RSA_INVALID_PADDING
289 * The input doesn't contain properly formatted padding.
gabor-mezei-arm7e6a1ea2021-08-11 16:40:35 +0200290 */
gabor-mezei-armf52941e2021-09-27 16:11:12 +0200291int mbedtls_cf_rsaes_pkcs1_v15_unpadding( int mode,
Gabor Mezei91deea72021-10-18 16:17:57 +0200292 unsigned char *input,
gabor-mezei-armf52941e2021-09-27 16:11:12 +0200293 size_t ilen,
gabor-mezei-armf52941e2021-09-27 16:11:12 +0200294 unsigned char *output,
295 size_t output_max_len,
Gabor Mezei91deea72021-10-18 16:17:57 +0200296 size_t *olen );
gabor-mezei-armf52941e2021-09-27 16:11:12 +0200297
298#endif /* MBEDTLS_PKCS1_V15 && MBEDTLS_RSA_C && ! MBEDTLS_RSA_ALT */
Gabor Mezei6e0e9902021-10-19 11:27:17 +0200299
300#endif /* MBEDTLS_CONSTANT_TIME_INTERNAL_H */