Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
| 2 | * All rights reserved. |
| 3 | * |
| 4 | * This package is an SSL implementation written |
| 5 | * by Eric Young (eay@cryptsoft.com). |
| 6 | * The implementation was written so as to conform with Netscapes SSL. |
| 7 | * |
| 8 | * This library is free for commercial and non-commercial use as long as |
| 9 | * the following conditions are aheared to. The following conditions |
| 10 | * apply to all code found in this distribution, be it the RC4, RSA, |
| 11 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation |
| 12 | * included with this distribution is covered by the same copyright terms |
| 13 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). |
| 14 | * |
| 15 | * Copyright remains Eric Young's, and as such any Copyright notices in |
| 16 | * the code are not to be removed. |
| 17 | * If this package is used in a product, Eric Young should be given attribution |
| 18 | * as the author of the parts of the library used. |
| 19 | * This can be in the form of a textual message at program startup or |
| 20 | * in documentation (online or textual) provided with the package. |
| 21 | * |
| 22 | * Redistribution and use in source and binary forms, with or without |
| 23 | * modification, are permitted provided that the following conditions |
| 24 | * are met: |
| 25 | * 1. Redistributions of source code must retain the copyright |
| 26 | * notice, this list of conditions and the following disclaimer. |
| 27 | * 2. Redistributions in binary form must reproduce the above copyright |
| 28 | * notice, this list of conditions and the following disclaimer in the |
| 29 | * documentation and/or other materials provided with the distribution. |
| 30 | * 3. All advertising materials mentioning features or use of this software |
| 31 | * must display the following acknowledgement: |
| 32 | * "This product includes cryptographic software written by |
| 33 | * Eric Young (eay@cryptsoft.com)" |
| 34 | * The word 'cryptographic' can be left out if the rouines from the library |
| 35 | * being used are not cryptographic related :-). |
| 36 | * 4. If you include any Windows specific code (or a derivative thereof) from |
| 37 | * the apps directory (application code) you must include an acknowledgement: |
| 38 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" |
| 39 | * |
| 40 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND |
| 41 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 42 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 43 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE |
| 44 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 45 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 46 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 47 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 48 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 49 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 50 | * SUCH DAMAGE. |
| 51 | * |
| 52 | * The licence and distribution terms for any publically available version or |
| 53 | * derivative of this code cannot be changed. i.e. this code cannot simply be |
| 54 | * copied and put under another distribution licence |
| 55 | * [including the GNU Public Licence.] */ |
| 56 | |
| 57 | #include <openssl/rsa.h> |
| 58 | |
David Benjamin | cfa9de8 | 2016-03-14 14:19:41 -0400 | [diff] [blame] | 59 | #include <assert.h> |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 60 | #include <limits.h> |
Adam Langley | 2b2d66d | 2015-01-30 17:08:37 -0800 | [diff] [blame] | 61 | #include <string.h> |
| 62 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 63 | #include <openssl/bn.h> |
| 64 | #include <openssl/err.h> |
| 65 | #include <openssl/mem.h> |
Brian Smith | 054e682 | 2015-03-27 21:12:01 -1000 | [diff] [blame] | 66 | #include <openssl/thread.h> |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 67 | #include <openssl/type_check.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 68 | |
| 69 | #include "internal.h" |
Adam Langley | 96dec44 | 2017-05-03 11:50:51 -0700 | [diff] [blame] | 70 | #include "../bn/internal.h" |
| 71 | #include "../../internal.h" |
| 72 | #include "../delocate.h" |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 73 | |
| 74 | |
Brian Smith | 625475f | 2016-01-12 10:47:25 -1000 | [diff] [blame] | 75 | static int check_modulus_and_exponent_sizes(const RSA *rsa) { |
| 76 | unsigned rsa_bits = BN_num_bits(rsa->n); |
David Benjamin | cfa9de8 | 2016-03-14 14:19:41 -0400 | [diff] [blame] | 77 | |
Brian Smith | 625475f | 2016-01-12 10:47:25 -1000 | [diff] [blame] | 78 | if (rsa_bits > 16 * 1024) { |
| 79 | OPENSSL_PUT_ERROR(RSA, RSA_R_MODULUS_TOO_LARGE); |
| 80 | return 0; |
| 81 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 82 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 83 | // Mitigate DoS attacks by limiting the exponent size. 33 bits was chosen as |
| 84 | // the limit based on the recommendations in [1] and [2]. Windows CryptoAPI |
| 85 | // doesn't support values larger than 32 bits [3], so it is unlikely that |
| 86 | // exponents larger than 32 bits are being used for anything Windows commonly |
| 87 | // does. |
| 88 | // |
| 89 | // [1] https://www.imperialviolet.org/2012/03/16/rsae.html |
| 90 | // [2] https://www.imperialviolet.org/2012/03/17/rsados.html |
| 91 | // [3] https://msdn.microsoft.com/en-us/library/aa387685(VS.85).aspx |
David Benjamin | cfa9de8 | 2016-03-14 14:19:41 -0400 | [diff] [blame] | 92 | static const unsigned kMaxExponentBits = 33; |
| 93 | |
| 94 | if (BN_num_bits(rsa->e) > kMaxExponentBits) { |
Brian Smith | 625475f | 2016-01-12 10:47:25 -1000 | [diff] [blame] | 95 | OPENSSL_PUT_ERROR(RSA, RSA_R_BAD_E_VALUE); |
| 96 | return 0; |
| 97 | } |
| 98 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 99 | // Verify |n > e|. Comparing |rsa_bits| to |kMaxExponentBits| is a small |
| 100 | // shortcut to comparing |n| and |e| directly. In reality, |kMaxExponentBits| |
| 101 | // is much smaller than the minimum RSA key size that any application should |
| 102 | // accept. |
David Benjamin | cfa9de8 | 2016-03-14 14:19:41 -0400 | [diff] [blame] | 103 | if (rsa_bits <= kMaxExponentBits) { |
| 104 | OPENSSL_PUT_ERROR(RSA, RSA_R_KEY_SIZE_TOO_SMALL); |
Brian Smith | 625475f | 2016-01-12 10:47:25 -1000 | [diff] [blame] | 105 | return 0; |
| 106 | } |
David Benjamin | cfa9de8 | 2016-03-14 14:19:41 -0400 | [diff] [blame] | 107 | assert(BN_ucmp(rsa->n, rsa->e) > 0); |
Brian Smith | 625475f | 2016-01-12 10:47:25 -1000 | [diff] [blame] | 108 | |
| 109 | return 1; |
| 110 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 111 | |
David Benjamin | d93831d | 2015-10-29 13:19:12 -0400 | [diff] [blame] | 112 | size_t rsa_default_size(const RSA *rsa) { |
David Benjamin | 925fee3 | 2014-07-11 14:14:08 -0400 | [diff] [blame] | 113 | return BN_num_bytes(rsa->n); |
| 114 | } |
| 115 | |
David Benjamin | 073391f | 2017-05-03 15:03:35 -0400 | [diff] [blame] | 116 | int RSA_encrypt(RSA *rsa, size_t *out_len, uint8_t *out, size_t max_out, |
| 117 | const uint8_t *in, size_t in_len, int padding) { |
| 118 | if (rsa->n == NULL || rsa->e == NULL) { |
| 119 | OPENSSL_PUT_ERROR(RSA, RSA_R_VALUE_MISSING); |
| 120 | return 0; |
| 121 | } |
| 122 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 123 | const unsigned rsa_size = RSA_size(rsa); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 124 | BIGNUM *f, *result; |
| 125 | uint8_t *buf = NULL; |
| 126 | BN_CTX *ctx = NULL; |
Adam Langley | 6887edb | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 127 | int i, ret = 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 128 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 129 | if (max_out < rsa_size) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 130 | OPENSSL_PUT_ERROR(RSA, RSA_R_OUTPUT_BUFFER_TOO_SMALL); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 131 | return 0; |
| 132 | } |
| 133 | |
Brian Smith | 625475f | 2016-01-12 10:47:25 -1000 | [diff] [blame] | 134 | if (!check_modulus_and_exponent_sizes(rsa)) { |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 135 | return 0; |
| 136 | } |
| 137 | |
| 138 | ctx = BN_CTX_new(); |
| 139 | if (ctx == NULL) { |
| 140 | goto err; |
| 141 | } |
| 142 | |
| 143 | BN_CTX_start(ctx); |
| 144 | f = BN_CTX_get(ctx); |
| 145 | result = BN_CTX_get(ctx); |
| 146 | buf = OPENSSL_malloc(rsa_size); |
| 147 | if (!f || !result || !buf) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 148 | OPENSSL_PUT_ERROR(RSA, ERR_R_MALLOC_FAILURE); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 149 | goto err; |
| 150 | } |
| 151 | |
| 152 | switch (padding) { |
| 153 | case RSA_PKCS1_PADDING: |
| 154 | i = RSA_padding_add_PKCS1_type_2(buf, rsa_size, in, in_len); |
| 155 | break; |
| 156 | case RSA_PKCS1_OAEP_PADDING: |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 157 | // Use the default parameters: SHA-1 for both hashes and no label. |
Adam Langley | 6887edb | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 158 | i = RSA_padding_add_PKCS1_OAEP_mgf1(buf, rsa_size, in, in_len, |
| 159 | NULL, 0, NULL, NULL); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 160 | break; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 161 | case RSA_NO_PADDING: |
| 162 | i = RSA_padding_add_none(buf, rsa_size, in, in_len); |
| 163 | break; |
| 164 | default: |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 165 | OPENSSL_PUT_ERROR(RSA, RSA_R_UNKNOWN_PADDING_TYPE); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 166 | goto err; |
| 167 | } |
| 168 | |
| 169 | if (i <= 0) { |
| 170 | goto err; |
| 171 | } |
| 172 | |
| 173 | if (BN_bin2bn(buf, rsa_size, f) == NULL) { |
| 174 | goto err; |
| 175 | } |
| 176 | |
| 177 | if (BN_ucmp(f, rsa->n) >= 0) { |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 178 | // usually the padding functions would catch this |
David Benjamin | 2ec3b31 | 2017-07-01 16:03:06 -0400 | [diff] [blame] | 179 | OPENSSL_PUT_ERROR(RSA, RSA_R_DATA_TOO_LARGE); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 180 | goto err; |
| 181 | } |
| 182 | |
Brian Smith | d035730 | 2016-03-25 10:11:04 -1000 | [diff] [blame] | 183 | if (!BN_MONT_CTX_set_locked(&rsa->mont_n, &rsa->lock, rsa->n, ctx) || |
Brian Smith | 24493a4 | 2016-03-25 09:12:48 -1000 | [diff] [blame] | 184 | !BN_mod_exp_mont(result, f, rsa->e, rsa->n, ctx, rsa->mont_n)) { |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 185 | goto err; |
| 186 | } |
| 187 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 188 | // put in leading 0 bytes if the number is less than the length of the |
| 189 | // modulus |
Adam Langley | 6887edb | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 190 | if (!BN_bn2bin_padded(out, rsa_size, result)) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 191 | OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR); |
Adam Langley | 6887edb | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 192 | goto err; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | *out_len = rsa_size; |
| 196 | ret = 1; |
| 197 | |
| 198 | err: |
| 199 | if (ctx != NULL) { |
| 200 | BN_CTX_end(ctx); |
| 201 | BN_CTX_free(ctx); |
| 202 | } |
Martin Kreichgauer | 6dc892f | 2017-08-30 10:49:05 -0700 | [diff] [blame^] | 203 | OPENSSL_free(buf); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 204 | |
| 205 | return ret; |
| 206 | } |
| 207 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 208 | // MAX_BLINDINGS_PER_RSA defines the maximum number of cached BN_BLINDINGs per |
| 209 | // RSA*. Then this limit is exceeded, BN_BLINDING objects will be created and |
| 210 | // destroyed as needed. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 211 | #define MAX_BLINDINGS_PER_RSA 1024 |
| 212 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 213 | // rsa_blinding_get returns a BN_BLINDING to use with |rsa|. It does this by |
| 214 | // allocating one of the cached BN_BLINDING objects in |rsa->blindings|. If |
| 215 | // none are free, the cache will be extended by a extra element and the new |
| 216 | // BN_BLINDING is returned. |
| 217 | // |
| 218 | // On success, the index of the assigned BN_BLINDING is written to |
| 219 | // |*index_used| and must be passed to |rsa_blinding_release| when finished. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 220 | static BN_BLINDING *rsa_blinding_get(RSA *rsa, unsigned *index_used, |
| 221 | BN_CTX *ctx) { |
Brian Smith | 3426d10 | 2016-03-17 16:10:04 -1000 | [diff] [blame] | 222 | assert(ctx != NULL); |
Brian Smith | cbf56a5 | 2016-03-21 11:25:39 -1000 | [diff] [blame] | 223 | assert(rsa->mont_n != NULL); |
| 224 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 225 | BN_BLINDING *ret = NULL; |
| 226 | BN_BLINDING **new_blindings; |
| 227 | uint8_t *new_blindings_inuse; |
| 228 | char overflow = 0; |
| 229 | |
Adam Langley | 683d7bd | 2015-04-13 11:04:14 -0700 | [diff] [blame] | 230 | CRYPTO_MUTEX_lock_write(&rsa->lock); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 231 | |
Adam Langley | 3367273 | 2015-03-31 18:55:53 -0700 | [diff] [blame] | 232 | unsigned i; |
| 233 | for (i = 0; i < rsa->num_blindings; i++) { |
| 234 | if (rsa->blindings_inuse[i] == 0) { |
| 235 | rsa->blindings_inuse[i] = 1; |
| 236 | ret = rsa->blindings[i]; |
| 237 | *index_used = i; |
| 238 | break; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 239 | } |
| 240 | } |
| 241 | |
| 242 | if (ret != NULL) { |
David Benjamin | 29270de | 2016-05-24 15:28:36 +0000 | [diff] [blame] | 243 | CRYPTO_MUTEX_unlock_write(&rsa->lock); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 244 | return ret; |
| 245 | } |
| 246 | |
| 247 | overflow = rsa->num_blindings >= MAX_BLINDINGS_PER_RSA; |
| 248 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 249 | // We didn't find a free BN_BLINDING to use so increase the length of |
| 250 | // the arrays by one and use the newly created element. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 251 | |
David Benjamin | 29270de | 2016-05-24 15:28:36 +0000 | [diff] [blame] | 252 | CRYPTO_MUTEX_unlock_write(&rsa->lock); |
Brian Smith | 86361a3 | 2016-03-26 19:42:31 -1000 | [diff] [blame] | 253 | ret = BN_BLINDING_new(); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 254 | if (ret == NULL) { |
| 255 | return NULL; |
| 256 | } |
| 257 | |
| 258 | if (overflow) { |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 259 | // We cannot add any more cached BN_BLINDINGs so we use |ret| |
| 260 | // and mark it for destruction in |rsa_blinding_release|. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 261 | *index_used = MAX_BLINDINGS_PER_RSA; |
| 262 | return ret; |
| 263 | } |
| 264 | |
Adam Langley | 683d7bd | 2015-04-13 11:04:14 -0700 | [diff] [blame] | 265 | CRYPTO_MUTEX_lock_write(&rsa->lock); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 266 | |
| 267 | new_blindings = |
| 268 | OPENSSL_malloc(sizeof(BN_BLINDING *) * (rsa->num_blindings + 1)); |
| 269 | if (new_blindings == NULL) { |
| 270 | goto err1; |
| 271 | } |
David Benjamin | 17cf2cb | 2016-12-13 01:07:13 -0500 | [diff] [blame] | 272 | OPENSSL_memcpy(new_blindings, rsa->blindings, |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 273 | sizeof(BN_BLINDING *) * rsa->num_blindings); |
| 274 | new_blindings[rsa->num_blindings] = ret; |
| 275 | |
| 276 | new_blindings_inuse = OPENSSL_malloc(rsa->num_blindings + 1); |
| 277 | if (new_blindings_inuse == NULL) { |
| 278 | goto err2; |
| 279 | } |
David Benjamin | 17cf2cb | 2016-12-13 01:07:13 -0500 | [diff] [blame] | 280 | OPENSSL_memcpy(new_blindings_inuse, rsa->blindings_inuse, rsa->num_blindings); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 281 | new_blindings_inuse[rsa->num_blindings] = 1; |
| 282 | *index_used = rsa->num_blindings; |
| 283 | |
David Benjamin | d8b65c8 | 2015-04-22 16:09:09 -0400 | [diff] [blame] | 284 | OPENSSL_free(rsa->blindings); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 285 | rsa->blindings = new_blindings; |
David Benjamin | d8b65c8 | 2015-04-22 16:09:09 -0400 | [diff] [blame] | 286 | OPENSSL_free(rsa->blindings_inuse); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 287 | rsa->blindings_inuse = new_blindings_inuse; |
| 288 | rsa->num_blindings++; |
| 289 | |
David Benjamin | 29270de | 2016-05-24 15:28:36 +0000 | [diff] [blame] | 290 | CRYPTO_MUTEX_unlock_write(&rsa->lock); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 291 | return ret; |
| 292 | |
| 293 | err2: |
| 294 | OPENSSL_free(new_blindings); |
| 295 | |
| 296 | err1: |
David Benjamin | 29270de | 2016-05-24 15:28:36 +0000 | [diff] [blame] | 297 | CRYPTO_MUTEX_unlock_write(&rsa->lock); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 298 | BN_BLINDING_free(ret); |
| 299 | return NULL; |
| 300 | } |
| 301 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 302 | // rsa_blinding_release marks the cached BN_BLINDING at the given index as free |
| 303 | // for other threads to use. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 304 | static void rsa_blinding_release(RSA *rsa, BN_BLINDING *blinding, |
| 305 | unsigned blinding_index) { |
| 306 | if (blinding_index == MAX_BLINDINGS_PER_RSA) { |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 307 | // This blinding wasn't cached. |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 308 | BN_BLINDING_free(blinding); |
| 309 | return; |
| 310 | } |
| 311 | |
Adam Langley | 683d7bd | 2015-04-13 11:04:14 -0700 | [diff] [blame] | 312 | CRYPTO_MUTEX_lock_write(&rsa->lock); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 313 | rsa->blindings_inuse[blinding_index] = 0; |
David Benjamin | 29270de | 2016-05-24 15:28:36 +0000 | [diff] [blame] | 314 | CRYPTO_MUTEX_unlock_write(&rsa->lock); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 315 | } |
| 316 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 317 | // signing |
David Benjamin | d93831d | 2015-10-29 13:19:12 -0400 | [diff] [blame] | 318 | int rsa_default_sign_raw(RSA *rsa, size_t *out_len, uint8_t *out, |
| 319 | size_t max_out, const uint8_t *in, size_t in_len, |
| 320 | int padding) { |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 321 | const unsigned rsa_size = RSA_size(rsa); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 322 | uint8_t *buf = NULL; |
Adam Langley | 6887edb | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 323 | int i, ret = 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 324 | |
| 325 | if (max_out < rsa_size) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 326 | OPENSSL_PUT_ERROR(RSA, RSA_R_OUTPUT_BUFFER_TOO_SMALL); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 327 | return 0; |
| 328 | } |
| 329 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 330 | buf = OPENSSL_malloc(rsa_size); |
Adam Langley | 6bc658d | 2014-08-18 13:29:45 -0700 | [diff] [blame] | 331 | if (buf == NULL) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 332 | OPENSSL_PUT_ERROR(RSA, ERR_R_MALLOC_FAILURE); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 333 | goto err; |
| 334 | } |
| 335 | |
| 336 | switch (padding) { |
| 337 | case RSA_PKCS1_PADDING: |
| 338 | i = RSA_padding_add_PKCS1_type_1(buf, rsa_size, in, in_len); |
| 339 | break; |
| 340 | case RSA_NO_PADDING: |
| 341 | i = RSA_padding_add_none(buf, rsa_size, in, in_len); |
| 342 | break; |
| 343 | default: |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 344 | OPENSSL_PUT_ERROR(RSA, RSA_R_UNKNOWN_PADDING_TYPE); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 345 | goto err; |
| 346 | } |
Adam Langley | 6bc658d | 2014-08-18 13:29:45 -0700 | [diff] [blame] | 347 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 348 | if (i <= 0) { |
| 349 | goto err; |
| 350 | } |
| 351 | |
Adam Langley | 6bc658d | 2014-08-18 13:29:45 -0700 | [diff] [blame] | 352 | if (!RSA_private_transform(rsa, out, buf, rsa_size)) { |
Adam Langley | 5f5bf6f | 2015-02-24 13:49:41 -0800 | [diff] [blame] | 353 | goto err; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 354 | } |
| 355 | |
| 356 | *out_len = rsa_size; |
| 357 | ret = 1; |
| 358 | |
| 359 | err: |
Martin Kreichgauer | 6dc892f | 2017-08-30 10:49:05 -0700 | [diff] [blame^] | 360 | OPENSSL_free(buf); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 361 | |
| 362 | return ret; |
| 363 | } |
| 364 | |
David Benjamin | d93831d | 2015-10-29 13:19:12 -0400 | [diff] [blame] | 365 | int rsa_default_decrypt(RSA *rsa, size_t *out_len, uint8_t *out, size_t max_out, |
| 366 | const uint8_t *in, size_t in_len, int padding) { |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 367 | const unsigned rsa_size = RSA_size(rsa); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 368 | uint8_t *buf = NULL; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 369 | int ret = 0; |
| 370 | |
| 371 | if (max_out < rsa_size) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 372 | OPENSSL_PUT_ERROR(RSA, RSA_R_OUTPUT_BUFFER_TOO_SMALL); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 373 | return 0; |
| 374 | } |
| 375 | |
David Benjamin | 74279b6 | 2014-07-24 13:09:19 -0400 | [diff] [blame] | 376 | if (padding == RSA_NO_PADDING) { |
| 377 | buf = out; |
| 378 | } else { |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 379 | // Allocate a temporary buffer to hold the padded plaintext. |
David Benjamin | 74279b6 | 2014-07-24 13:09:19 -0400 | [diff] [blame] | 380 | buf = OPENSSL_malloc(rsa_size); |
| 381 | if (buf == NULL) { |
| 382 | OPENSSL_PUT_ERROR(RSA, ERR_R_MALLOC_FAILURE); |
| 383 | goto err; |
| 384 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 385 | } |
| 386 | |
Adam Langley | 6bc658d | 2014-08-18 13:29:45 -0700 | [diff] [blame] | 387 | if (in_len != rsa_size) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 388 | OPENSSL_PUT_ERROR(RSA, RSA_R_DATA_LEN_NOT_EQUAL_TO_MOD_LEN); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 389 | goto err; |
| 390 | } |
| 391 | |
Adam Langley | 6bc658d | 2014-08-18 13:29:45 -0700 | [diff] [blame] | 392 | if (!RSA_private_transform(rsa, buf, in, rsa_size)) { |
Adam Langley | 6887edb | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 393 | goto err; |
| 394 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 395 | |
| 396 | switch (padding) { |
| 397 | case RSA_PKCS1_PADDING: |
David Benjamin | b0ad3d7 | 2017-03-16 13:15:31 -0400 | [diff] [blame] | 398 | ret = |
| 399 | RSA_padding_check_PKCS1_type_2(out, out_len, rsa_size, buf, rsa_size); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 400 | break; |
| 401 | case RSA_PKCS1_OAEP_PADDING: |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 402 | // Use the default parameters: SHA-1 for both hashes and no label. |
David Benjamin | b0ad3d7 | 2017-03-16 13:15:31 -0400 | [diff] [blame] | 403 | ret = RSA_padding_check_PKCS1_OAEP_mgf1(out, out_len, rsa_size, buf, |
| 404 | rsa_size, NULL, 0, NULL, NULL); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 405 | break; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 406 | case RSA_NO_PADDING: |
David Benjamin | b0ad3d7 | 2017-03-16 13:15:31 -0400 | [diff] [blame] | 407 | *out_len = rsa_size; |
| 408 | ret = 1; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 409 | break; |
| 410 | default: |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 411 | OPENSSL_PUT_ERROR(RSA, RSA_R_UNKNOWN_PADDING_TYPE); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 412 | goto err; |
| 413 | } |
| 414 | |
David Benjamin | b0ad3d7 | 2017-03-16 13:15:31 -0400 | [diff] [blame] | 415 | if (!ret) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 416 | OPENSSL_PUT_ERROR(RSA, RSA_R_PADDING_CHECK_FAILED); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 417 | } |
| 418 | |
| 419 | err: |
Martin Kreichgauer | 6dc892f | 2017-08-30 10:49:05 -0700 | [diff] [blame^] | 420 | if (padding != RSA_NO_PADDING) { |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 421 | OPENSSL_free(buf); |
| 422 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 423 | |
| 424 | return ret; |
| 425 | } |
| 426 | |
Brian Smith | f08c1c6 | 2016-03-25 13:24:46 -1000 | [diff] [blame] | 427 | static int mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx); |
| 428 | |
Brian Smith | c0b196d | 2016-03-04 08:54:07 -1000 | [diff] [blame] | 429 | int RSA_verify_raw(RSA *rsa, size_t *out_len, uint8_t *out, size_t max_out, |
| 430 | const uint8_t *in, size_t in_len, int padding) { |
| 431 | if (rsa->n == NULL || rsa->e == NULL) { |
| 432 | OPENSSL_PUT_ERROR(RSA, RSA_R_VALUE_MISSING); |
| 433 | return 0; |
| 434 | } |
| 435 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 436 | const unsigned rsa_size = RSA_size(rsa); |
| 437 | BIGNUM *f, *result; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 438 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 439 | if (max_out < rsa_size) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 440 | OPENSSL_PUT_ERROR(RSA, RSA_R_OUTPUT_BUFFER_TOO_SMALL); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 441 | return 0; |
| 442 | } |
| 443 | |
Brian Smith | 9902262 | 2016-03-04 09:20:07 -1000 | [diff] [blame] | 444 | if (in_len != rsa_size) { |
| 445 | OPENSSL_PUT_ERROR(RSA, RSA_R_DATA_LEN_NOT_EQUAL_TO_MOD_LEN); |
| 446 | return 0; |
| 447 | } |
| 448 | |
Brian Smith | 625475f | 2016-01-12 10:47:25 -1000 | [diff] [blame] | 449 | if (!check_modulus_and_exponent_sizes(rsa)) { |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 450 | return 0; |
| 451 | } |
| 452 | |
Brian Smith | 2a92031 | 2016-03-04 13:42:47 -1000 | [diff] [blame] | 453 | BN_CTX *ctx = BN_CTX_new(); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 454 | if (ctx == NULL) { |
Brian Smith | 2a92031 | 2016-03-04 13:42:47 -1000 | [diff] [blame] | 455 | return 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 456 | } |
| 457 | |
Brian Smith | 2a92031 | 2016-03-04 13:42:47 -1000 | [diff] [blame] | 458 | int ret = 0; |
| 459 | uint8_t *buf = NULL; |
| 460 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 461 | BN_CTX_start(ctx); |
| 462 | f = BN_CTX_get(ctx); |
| 463 | result = BN_CTX_get(ctx); |
Brian Smith | 2a92031 | 2016-03-04 13:42:47 -1000 | [diff] [blame] | 464 | if (f == NULL || result == NULL) { |
| 465 | OPENSSL_PUT_ERROR(RSA, ERR_R_MALLOC_FAILURE); |
| 466 | goto err; |
| 467 | } |
| 468 | |
David Benjamin | 74279b6 | 2014-07-24 13:09:19 -0400 | [diff] [blame] | 469 | if (padding == RSA_NO_PADDING) { |
| 470 | buf = out; |
| 471 | } else { |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 472 | // Allocate a temporary buffer to hold the padded plaintext. |
David Benjamin | 74279b6 | 2014-07-24 13:09:19 -0400 | [diff] [blame] | 473 | buf = OPENSSL_malloc(rsa_size); |
| 474 | if (buf == NULL) { |
| 475 | OPENSSL_PUT_ERROR(RSA, ERR_R_MALLOC_FAILURE); |
| 476 | goto err; |
| 477 | } |
| 478 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 479 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 480 | if (BN_bin2bn(in, in_len, f) == NULL) { |
| 481 | goto err; |
| 482 | } |
| 483 | |
| 484 | if (BN_ucmp(f, rsa->n) >= 0) { |
David Benjamin | 2ec3b31 | 2017-07-01 16:03:06 -0400 | [diff] [blame] | 485 | OPENSSL_PUT_ERROR(RSA, RSA_R_DATA_TOO_LARGE); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 486 | goto err; |
| 487 | } |
| 488 | |
Brian Smith | d035730 | 2016-03-25 10:11:04 -1000 | [diff] [blame] | 489 | if (!BN_MONT_CTX_set_locked(&rsa->mont_n, &rsa->lock, rsa->n, ctx) || |
Brian Smith | 24493a4 | 2016-03-25 09:12:48 -1000 | [diff] [blame] | 490 | !BN_mod_exp_mont(result, f, rsa->e, rsa->n, ctx, rsa->mont_n)) { |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 491 | goto err; |
| 492 | } |
| 493 | |
Adam Langley | 6887edb | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 494 | if (!BN_bn2bin_padded(buf, rsa_size, result)) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 495 | OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR); |
Adam Langley | 6887edb | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 496 | goto err; |
| 497 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 498 | |
| 499 | switch (padding) { |
| 500 | case RSA_PKCS1_PADDING: |
David Benjamin | 43ea204 | 2017-03-16 11:54:11 -0400 | [diff] [blame] | 501 | ret = |
| 502 | RSA_padding_check_PKCS1_type_1(out, out_len, rsa_size, buf, rsa_size); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 503 | break; |
| 504 | case RSA_NO_PADDING: |
David Benjamin | 43ea204 | 2017-03-16 11:54:11 -0400 | [diff] [blame] | 505 | ret = 1; |
| 506 | *out_len = rsa_size; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 507 | break; |
| 508 | default: |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 509 | OPENSSL_PUT_ERROR(RSA, RSA_R_UNKNOWN_PADDING_TYPE); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 510 | goto err; |
| 511 | } |
| 512 | |
David Benjamin | 43ea204 | 2017-03-16 11:54:11 -0400 | [diff] [blame] | 513 | if (!ret) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 514 | OPENSSL_PUT_ERROR(RSA, RSA_R_PADDING_CHECK_FAILED); |
David Benjamin | 43ea204 | 2017-03-16 11:54:11 -0400 | [diff] [blame] | 515 | goto err; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 516 | } |
| 517 | |
| 518 | err: |
Brian Smith | 2a92031 | 2016-03-04 13:42:47 -1000 | [diff] [blame] | 519 | BN_CTX_end(ctx); |
| 520 | BN_CTX_free(ctx); |
| 521 | if (buf != out) { |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 522 | OPENSSL_free(buf); |
| 523 | } |
| 524 | return ret; |
| 525 | } |
| 526 | |
David Benjamin | d93831d | 2015-10-29 13:19:12 -0400 | [diff] [blame] | 527 | int rsa_default_private_transform(RSA *rsa, uint8_t *out, const uint8_t *in, |
| 528 | size_t len) { |
David Benjamin | e55b32d | 2017-06-22 10:53:25 -0400 | [diff] [blame] | 529 | if (rsa->n == NULL || rsa->d == NULL) { |
| 530 | OPENSSL_PUT_ERROR(RSA, RSA_R_VALUE_MISSING); |
| 531 | return 0; |
| 532 | } |
| 533 | |
Adam Langley | 6bc658d | 2014-08-18 13:29:45 -0700 | [diff] [blame] | 534 | BIGNUM *f, *result; |
| 535 | BN_CTX *ctx = NULL; |
| 536 | unsigned blinding_index = 0; |
| 537 | BN_BLINDING *blinding = NULL; |
| 538 | int ret = 0; |
| 539 | |
| 540 | ctx = BN_CTX_new(); |
| 541 | if (ctx == NULL) { |
| 542 | goto err; |
| 543 | } |
| 544 | BN_CTX_start(ctx); |
| 545 | f = BN_CTX_get(ctx); |
| 546 | result = BN_CTX_get(ctx); |
| 547 | |
| 548 | if (f == NULL || result == NULL) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 549 | OPENSSL_PUT_ERROR(RSA, ERR_R_MALLOC_FAILURE); |
Adam Langley | 6bc658d | 2014-08-18 13:29:45 -0700 | [diff] [blame] | 550 | goto err; |
| 551 | } |
| 552 | |
| 553 | if (BN_bin2bn(in, len, f) == NULL) { |
| 554 | goto err; |
| 555 | } |
| 556 | |
| 557 | if (BN_ucmp(f, rsa->n) >= 0) { |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 558 | // Usually the padding functions would catch this. |
David Benjamin | 2ec3b31 | 2017-07-01 16:03:06 -0400 | [diff] [blame] | 559 | OPENSSL_PUT_ERROR(RSA, RSA_R_DATA_TOO_LARGE); |
Adam Langley | 6bc658d | 2014-08-18 13:29:45 -0700 | [diff] [blame] | 560 | goto err; |
| 561 | } |
| 562 | |
Brian Smith | 86080c3 | 2016-03-25 12:23:16 -1000 | [diff] [blame] | 563 | if (!BN_MONT_CTX_set_locked(&rsa->mont_n, &rsa->lock, rsa->n, ctx)) { |
| 564 | OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR); |
| 565 | goto err; |
| 566 | } |
| 567 | |
Adam Langley | 8379978 | 2017-06-13 13:00:25 -0700 | [diff] [blame] | 568 | const int do_blinding = (rsa->flags & RSA_FLAG_NO_BLINDING) == 0; |
Brian Smith | 598e55a | 2016-03-26 20:17:37 -1000 | [diff] [blame] | 569 | |
Adam Langley | 8379978 | 2017-06-13 13:00:25 -0700 | [diff] [blame] | 570 | if (rsa->e == NULL && do_blinding) { |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 571 | // We cannot do blinding or verification without |e|, and continuing without |
| 572 | // those countermeasures is dangerous. However, the Java/Android RSA API |
| 573 | // requires support for keys where only |d| and |n| (and not |e|) are known. |
| 574 | // The callers that require that bad behavior set |RSA_FLAG_NO_BLINDING|. |
Adam Langley | 8379978 | 2017-06-13 13:00:25 -0700 | [diff] [blame] | 575 | OPENSSL_PUT_ERROR(RSA, RSA_R_NO_PUBLIC_EXPONENT); |
| 576 | goto err; |
| 577 | } |
Brian Smith | 86361a3 | 2016-03-26 19:42:31 -1000 | [diff] [blame] | 578 | |
Adam Langley | 8379978 | 2017-06-13 13:00:25 -0700 | [diff] [blame] | 579 | if (do_blinding) { |
Adam Langley | 6bc658d | 2014-08-18 13:29:45 -0700 | [diff] [blame] | 580 | blinding = rsa_blinding_get(rsa, &blinding_index, ctx); |
| 581 | if (blinding == NULL) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 582 | OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR); |
Adam Langley | 6bc658d | 2014-08-18 13:29:45 -0700 | [diff] [blame] | 583 | goto err; |
| 584 | } |
Brian Smith | 86361a3 | 2016-03-26 19:42:31 -1000 | [diff] [blame] | 585 | if (!BN_BLINDING_convert(f, blinding, rsa->e, rsa->mont_n, ctx)) { |
Adam Langley | 6bc658d | 2014-08-18 13:29:45 -0700 | [diff] [blame] | 586 | goto err; |
| 587 | } |
| 588 | } |
| 589 | |
Brian Smith | 51b0d5b | 2016-03-25 13:15:39 -1000 | [diff] [blame] | 590 | if (rsa->p != NULL && rsa->q != NULL && rsa->e != NULL && rsa->dmp1 != NULL && |
| 591 | rsa->dmq1 != NULL && rsa->iqmp != NULL) { |
Brian Smith | f08c1c6 | 2016-03-25 13:24:46 -1000 | [diff] [blame] | 592 | if (!mod_exp(result, f, rsa, ctx)) { |
Adam Langley | 6bc658d | 2014-08-18 13:29:45 -0700 | [diff] [blame] | 593 | goto err; |
| 594 | } |
Brian Smith | 9f05de4 | 2016-08-02 18:21:18 -1000 | [diff] [blame] | 595 | } else if (!BN_mod_exp_mont_consttime(result, f, rsa->d, rsa->n, ctx, |
| 596 | rsa->mont_n)) { |
| 597 | goto err; |
Brian Smith | 86080c3 | 2016-03-25 12:23:16 -1000 | [diff] [blame] | 598 | } |
| 599 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 600 | // Verify the result to protect against fault attacks as described in the |
| 601 | // 1997 paper "On the Importance of Checking Cryptographic Protocols for |
| 602 | // Faults" by Dan Boneh, Richard A. DeMillo, and Richard J. Lipton. Some |
| 603 | // implementations do this only when the CRT is used, but we do it in all |
| 604 | // cases. Section 6 of the aforementioned paper describes an attack that |
| 605 | // works when the CRT isn't used. That attack is much less likely to succeed |
| 606 | // than the CRT attack, but there have likely been improvements since 1997. |
| 607 | // |
| 608 | // This check is cheap assuming |e| is small; it almost always is. |
Adam Langley | 8379978 | 2017-06-13 13:00:25 -0700 | [diff] [blame] | 609 | if (rsa->e != NULL) { |
Brian Smith | 86080c3 | 2016-03-25 12:23:16 -1000 | [diff] [blame] | 610 | BIGNUM *vrfy = BN_CTX_get(ctx); |
| 611 | if (vrfy == NULL || |
| 612 | !BN_mod_exp_mont(vrfy, result, rsa->e, rsa->n, ctx, rsa->mont_n) || |
| 613 | !BN_equal_consttime(vrfy, f)) { |
| 614 | OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR); |
Adam Langley | 6bc658d | 2014-08-18 13:29:45 -0700 | [diff] [blame] | 615 | goto err; |
| 616 | } |
Adam Langley | 6bc658d | 2014-08-18 13:29:45 -0700 | [diff] [blame] | 617 | |
Adam Langley | 8379978 | 2017-06-13 13:00:25 -0700 | [diff] [blame] | 618 | } |
| 619 | |
| 620 | if (do_blinding && |
| 621 | !BN_BLINDING_invert(result, blinding, rsa->mont_n, ctx)) { |
| 622 | goto err; |
Adam Langley | 6bc658d | 2014-08-18 13:29:45 -0700 | [diff] [blame] | 623 | } |
| 624 | |
| 625 | if (!BN_bn2bin_padded(out, len, result)) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 626 | OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR); |
Adam Langley | 6bc658d | 2014-08-18 13:29:45 -0700 | [diff] [blame] | 627 | goto err; |
| 628 | } |
| 629 | |
| 630 | ret = 1; |
| 631 | |
| 632 | err: |
| 633 | if (ctx != NULL) { |
| 634 | BN_CTX_end(ctx); |
| 635 | BN_CTX_free(ctx); |
| 636 | } |
| 637 | if (blinding != NULL) { |
| 638 | rsa_blinding_release(rsa, blinding, blinding_index); |
| 639 | } |
| 640 | |
| 641 | return ret; |
| 642 | } |
| 643 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 644 | static int mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx) { |
Brian Smith | f08c1c6 | 2016-03-25 13:24:46 -1000 | [diff] [blame] | 645 | assert(ctx != NULL); |
| 646 | |
Brian Smith | 51b0d5b | 2016-03-25 13:15:39 -1000 | [diff] [blame] | 647 | assert(rsa->n != NULL); |
| 648 | assert(rsa->e != NULL); |
| 649 | assert(rsa->d != NULL); |
| 650 | assert(rsa->p != NULL); |
| 651 | assert(rsa->q != NULL); |
| 652 | assert(rsa->dmp1 != NULL); |
| 653 | assert(rsa->dmq1 != NULL); |
| 654 | assert(rsa->iqmp != NULL); |
| 655 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 656 | BIGNUM *r1, *m1, *vrfy; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 657 | int ret = 0; |
| 658 | |
| 659 | BN_CTX_start(ctx); |
| 660 | r1 = BN_CTX_get(ctx); |
| 661 | m1 = BN_CTX_get(ctx); |
| 662 | vrfy = BN_CTX_get(ctx); |
Brian Smith | 7cf6085 | 2016-03-19 22:39:37 -1000 | [diff] [blame] | 663 | if (r1 == NULL || |
| 664 | m1 == NULL || |
| 665 | vrfy == NULL) { |
| 666 | goto err; |
| 667 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 668 | |
Brian Smith | 9f05de4 | 2016-08-02 18:21:18 -1000 | [diff] [blame] | 669 | if (!BN_MONT_CTX_set_locked(&rsa->mont_p, &rsa->lock, rsa->p, ctx) || |
| 670 | !BN_MONT_CTX_set_locked(&rsa->mont_q, &rsa->lock, rsa->q, ctx)) { |
| 671 | goto err; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 672 | } |
| 673 | |
Brian Smith | d035730 | 2016-03-25 10:11:04 -1000 | [diff] [blame] | 674 | if (!BN_MONT_CTX_set_locked(&rsa->mont_n, &rsa->lock, rsa->n, ctx)) { |
Brian Smith | 24493a4 | 2016-03-25 09:12:48 -1000 | [diff] [blame] | 675 | goto err; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 676 | } |
| 677 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 678 | // compute I mod q |
Brian Smith | 9f05de4 | 2016-08-02 18:21:18 -1000 | [diff] [blame] | 679 | if (!BN_mod(r1, I, rsa->q, ctx)) { |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 680 | goto err; |
| 681 | } |
| 682 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 683 | // compute r1^dmq1 mod q |
Brian Smith | 9f05de4 | 2016-08-02 18:21:18 -1000 | [diff] [blame] | 684 | if (!BN_mod_exp_mont_consttime(m1, r1, rsa->dmq1, rsa->q, ctx, rsa->mont_q)) { |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 685 | goto err; |
| 686 | } |
| 687 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 688 | // compute I mod p |
Brian Smith | 9f05de4 | 2016-08-02 18:21:18 -1000 | [diff] [blame] | 689 | if (!BN_mod(r1, I, rsa->p, ctx)) { |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 690 | goto err; |
| 691 | } |
| 692 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 693 | // compute r1^dmp1 mod p |
Brian Smith | 9f05de4 | 2016-08-02 18:21:18 -1000 | [diff] [blame] | 694 | if (!BN_mod_exp_mont_consttime(r0, r1, rsa->dmp1, rsa->p, ctx, rsa->mont_p)) { |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 695 | goto err; |
| 696 | } |
| 697 | |
| 698 | if (!BN_sub(r0, r0, m1)) { |
| 699 | goto err; |
| 700 | } |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 701 | // This will help stop the size of r0 increasing, which does |
| 702 | // affect the multiply if it optimised for a power of 2 size |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 703 | if (BN_is_negative(r0)) { |
| 704 | if (!BN_add(r0, r0, rsa->p)) { |
| 705 | goto err; |
| 706 | } |
| 707 | } |
| 708 | |
| 709 | if (!BN_mul(r1, r0, rsa->iqmp, ctx)) { |
| 710 | goto err; |
| 711 | } |
| 712 | |
Brian Smith | 9f05de4 | 2016-08-02 18:21:18 -1000 | [diff] [blame] | 713 | if (!BN_mod(r0, r1, rsa->p, ctx)) { |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 714 | goto err; |
| 715 | } |
| 716 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 717 | // If p < q it is occasionally possible for the correction of |
| 718 | // adding 'p' if r0 is negative above to leave the result still |
| 719 | // negative. This can break the private key operations: the following |
| 720 | // second correction should *always* correct this rare occurrence. |
| 721 | // This will *never* happen with OpenSSL generated keys because |
| 722 | // they ensure p > q [steve] |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 723 | if (BN_is_negative(r0)) { |
| 724 | if (!BN_add(r0, r0, rsa->p)) { |
| 725 | goto err; |
| 726 | } |
| 727 | } |
| 728 | if (!BN_mul(r1, r0, rsa->q, ctx)) { |
| 729 | goto err; |
| 730 | } |
| 731 | if (!BN_add(r0, r1, m1)) { |
| 732 | goto err; |
| 733 | } |
| 734 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 735 | ret = 1; |
| 736 | |
| 737 | err: |
| 738 | BN_CTX_end(ctx); |
| 739 | return ret; |
| 740 | } |
| 741 | |
David Benjamin | 43780cb | 2017-04-10 18:05:19 -0400 | [diff] [blame] | 742 | static int ensure_bignum(BIGNUM **out) { |
| 743 | if (*out == NULL) { |
| 744 | *out = BN_new(); |
| 745 | } |
| 746 | return *out != NULL; |
| 747 | } |
| 748 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 749 | // kBoringSSLRSASqrtTwo is the BIGNUM representation of ⌊2¹⁵³⁵×√2⌋. This is |
| 750 | // chosen to give enough precision for 3072-bit RSA, the largest key size FIPS |
| 751 | // specifies. Key sizes beyond this will round up. |
| 752 | // |
| 753 | // To verify this number, check that n² < 2³⁰⁷¹ < (n+1)², where n is value |
| 754 | // represented here. Note the components are listed in little-endian order. Here |
| 755 | // is some sample Python code to check: |
| 756 | // |
| 757 | // >>> TOBN = lambda a, b: a << 32 | b |
| 758 | // >>> l = [ <paste the contents of kSqrtTwo> ] |
| 759 | // >>> n = sum(a * 2**(64*i) for i, a in enumerate(l)) |
| 760 | // >>> n**2 < 2**3071 < (n+1)**2 |
| 761 | // True |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 762 | const BN_ULONG kBoringSSLRSASqrtTwo[] = { |
| 763 | TOBN(0xdea06241, 0xf7aa81c2), TOBN(0xf6a1be3f, 0xca221307), |
| 764 | TOBN(0x332a5e9f, 0x7bda1ebf), TOBN(0x0104dc01, 0xfe32352f), |
| 765 | TOBN(0xb8cf341b, 0x6f8236c7), TOBN(0x4264dabc, 0xd528b651), |
| 766 | TOBN(0xf4d3a02c, 0xebc93e0c), TOBN(0x81394ab6, 0xd8fd0efd), |
| 767 | TOBN(0xeaa4a089, 0x9040ca4a), TOBN(0xf52f120f, 0x836e582e), |
| 768 | TOBN(0xcb2a6343, 0x31f3c84d), TOBN(0xc6d5a8a3, 0x8bb7e9dc), |
| 769 | TOBN(0x460abc72, 0x2f7c4e33), TOBN(0xcab1bc91, 0x1688458a), |
| 770 | TOBN(0x53059c60, 0x11bc337b), TOBN(0xd2202e87, 0x42af1f4e), |
| 771 | TOBN(0x78048736, 0x3dfa2768), TOBN(0x0f74a85e, 0x439c7b4a), |
| 772 | TOBN(0xa8b1fe6f, 0xdc83db39), TOBN(0x4afc8304, 0x3ab8a2c3), |
| 773 | TOBN(0xed17ac85, 0x83339915), TOBN(0x1d6f60ba, 0x893ba84c), |
| 774 | TOBN(0x597d89b3, 0x754abe9f), TOBN(0xb504f333, 0xf9de6484), |
| 775 | }; |
| 776 | const size_t kBoringSSLRSASqrtTwoLen = OPENSSL_ARRAY_SIZE(kBoringSSLRSASqrtTwo); |
| 777 | |
| 778 | int rsa_less_than_words(const BN_ULONG *a, const BN_ULONG *b, size_t len) { |
Adam Langley | 518ba07 | 2017-04-20 13:51:11 -0700 | [diff] [blame] | 779 | OPENSSL_COMPILE_ASSERT(sizeof(BN_ULONG) <= sizeof(crypto_word_t), |
| 780 | crypto_word_t_too_small); |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 781 | int ret = 0; |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 782 | // Process the words in little-endian order. |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 783 | for (size_t i = 0; i < len; i++) { |
Adam Langley | 518ba07 | 2017-04-20 13:51:11 -0700 | [diff] [blame] | 784 | crypto_word_t eq = constant_time_eq_w(a[i], b[i]); |
| 785 | crypto_word_t lt = constant_time_lt_w(a[i], b[i]); |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 786 | ret = constant_time_select_int(eq, ret, constant_time_select_int(lt, 1, 0)); |
| 787 | } |
| 788 | return ret; |
| 789 | } |
| 790 | |
| 791 | int rsa_greater_than_pow2(const BIGNUM *b, int n) { |
| 792 | if (BN_is_negative(b) || n == INT_MAX) { |
| 793 | return 0; |
| 794 | } |
| 795 | |
| 796 | int b_bits = BN_num_bits(b); |
| 797 | return b_bits > n + 1 || (b_bits == n + 1 && !BN_is_pow2(b)); |
| 798 | } |
| 799 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 800 | // generate_prime sets |out| to a prime with length |bits| such that |out|-1 is |
| 801 | // relatively prime to |e|. If |p| is non-NULL, |out| will also not be close to |
| 802 | // |p|. |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 803 | static int generate_prime(BIGNUM *out, int bits, const BIGNUM *e, |
| 804 | const BIGNUM *p, BN_CTX *ctx, BN_GENCB *cb) { |
| 805 | if (bits < 128 || (bits % BN_BITS2) != 0) { |
| 806 | OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR); |
| 807 | return 0; |
| 808 | } |
| 809 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 810 | // Ensure the bound on |tries| does not overflow. |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 811 | if (bits >= INT_MAX/5) { |
| 812 | OPENSSL_PUT_ERROR(RSA, RSA_R_MODULUS_TOO_LARGE); |
| 813 | return 0; |
| 814 | } |
| 815 | |
| 816 | int ret = 0, tries = 0, rand_tries = 0; |
| 817 | BN_CTX_start(ctx); |
| 818 | BIGNUM *tmp = BN_CTX_get(ctx); |
| 819 | if (tmp == NULL) { |
| 820 | goto err; |
| 821 | } |
| 822 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 823 | // See FIPS 186-4 appendix B.3.3, steps 4 and 5. Note |bits| here is |
| 824 | // nlen/2. |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 825 | for (;;) { |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 826 | // Generate a random number of length |bits| where the bottom bit is set |
| 827 | // (steps 4.2, 4.3, 5.2 and 5.3) and the top bit is set (implied by the |
| 828 | // bound checked below in steps 4.4 and 5.5). |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 829 | if (!BN_rand(out, bits, BN_RAND_TOP_ONE, BN_RAND_BOTTOM_ODD) || |
| 830 | !BN_GENCB_call(cb, BN_GENCB_GENERATED, rand_tries++)) { |
| 831 | goto err; |
| 832 | } |
| 833 | |
| 834 | if (p != NULL) { |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 835 | // If |p| and |out| are too close, try again (step 5.4). |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 836 | if (!BN_sub(tmp, out, p)) { |
| 837 | goto err; |
| 838 | } |
| 839 | BN_set_negative(tmp, 0); |
| 840 | if (!rsa_greater_than_pow2(tmp, bits - 100)) { |
| 841 | continue; |
| 842 | } |
| 843 | } |
| 844 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 845 | // If out < 2^(bits-1)×√2, try again (steps 4.4 and 5.5). |
| 846 | // |
| 847 | // We check the most significant words, so we retry if ⌊out/2^k⌋ <= ⌊b/2^k⌋, |
| 848 | // where b = 2^(bits-1)×√2 and k = max(0, bits - 1536). For key sizes up to |
| 849 | // 3072 (bits = 1536), k = 0, so we are testing that ⌊out⌋ <= ⌊b⌋. out is an |
| 850 | // integer and b is not, so this is equivalent to out < b. That is, the |
| 851 | // comparison is exact for FIPS key sizes. |
| 852 | // |
| 853 | // For larger keys, the comparison is approximate, leaning towards |
| 854 | // retrying. That is, we reject a negligible fraction of primes that are |
| 855 | // within the FIPS bound, but we will never accept a prime outside the |
| 856 | // bound, ensuring the resulting RSA key is the right size. Specifically, if |
| 857 | // the FIPS bound holds, we have ⌊out/2^k⌋ < out/2^k < b/2^k. This implies |
| 858 | // ⌊out/2^k⌋ <= ⌊b/2^k⌋. That is, the FIPS bound implies our bound and so we |
| 859 | // are slightly tighter. |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 860 | size_t out_len = (size_t)out->top; |
| 861 | assert(out_len == (size_t)bits / BN_BITS2); |
| 862 | size_t to_check = kBoringSSLRSASqrtTwoLen; |
| 863 | if (to_check > out_len) { |
| 864 | to_check = out_len; |
| 865 | } |
| 866 | if (!rsa_less_than_words( |
| 867 | kBoringSSLRSASqrtTwo + kBoringSSLRSASqrtTwoLen - to_check, |
| 868 | out->d + out_len - to_check, to_check)) { |
| 869 | continue; |
| 870 | } |
| 871 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 872 | // Check gcd(out-1, e) is one (steps 4.5 and 5.6). |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 873 | if (!BN_sub(tmp, out, BN_value_one()) || |
| 874 | !BN_gcd(tmp, tmp, e, ctx)) { |
| 875 | goto err; |
| 876 | } |
| 877 | if (BN_is_one(tmp)) { |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 878 | // Test |out| for primality (steps 4.5.1 and 5.6.1). |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 879 | int is_probable_prime; |
| 880 | if (!BN_primality_test(&is_probable_prime, out, BN_prime_checks, ctx, 1, |
| 881 | cb)) { |
| 882 | goto err; |
| 883 | } |
| 884 | if (is_probable_prime) { |
| 885 | ret = 1; |
| 886 | goto err; |
| 887 | } |
| 888 | } |
| 889 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 890 | // If we've tried too many times to find a prime, abort (steps 4.7 and |
| 891 | // 5.8). |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 892 | tries++; |
| 893 | if (tries >= bits * 5) { |
| 894 | OPENSSL_PUT_ERROR(RSA, RSA_R_TOO_MANY_ITERATIONS); |
| 895 | goto err; |
| 896 | } |
| 897 | if (!BN_GENCB_call(cb, 2, tries)) { |
| 898 | goto err; |
| 899 | } |
| 900 | } |
| 901 | |
| 902 | err: |
| 903 | BN_CTX_end(ctx); |
| 904 | return ret; |
| 905 | } |
| 906 | |
David Benjamin | 073391f | 2017-05-03 15:03:35 -0400 | [diff] [blame] | 907 | int RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *e_value, BN_GENCB *cb) { |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 908 | // See FIPS 186-4 appendix B.3. This function implements a generalized version |
| 909 | // of the FIPS algorithm. |RSA_generate_key_fips| performs additional checks |
| 910 | // for FIPS-compliant key generation. |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 911 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 912 | // Always generate RSA keys which are a multiple of 128 bits. Round |bits| |
| 913 | // down as needed. |
David Benjamin | b7ded43 | 2017-04-11 13:24:31 -0400 | [diff] [blame] | 914 | bits &= ~127; |
| 915 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 916 | // Reject excessively small keys. |
David Benjamin | b7ded43 | 2017-04-11 13:24:31 -0400 | [diff] [blame] | 917 | if (bits < 256) { |
| 918 | OPENSSL_PUT_ERROR(RSA, RSA_R_KEY_SIZE_TOO_SMALL); |
| 919 | return 0; |
| 920 | } |
| 921 | |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 922 | int ret = 0; |
| 923 | BN_CTX *ctx = BN_CTX_new(); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 924 | if (ctx == NULL) { |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 925 | goto bn_err; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 926 | } |
| 927 | BN_CTX_start(ctx); |
David Benjamin | 61ae41f | 2017-05-04 13:50:39 -0400 | [diff] [blame] | 928 | BIGNUM *totient = BN_CTX_get(ctx); |
| 929 | BIGNUM *pm1 = BN_CTX_get(ctx); |
| 930 | BIGNUM *qm1 = BN_CTX_get(ctx); |
| 931 | BIGNUM *gcd = BN_CTX_get(ctx); |
| 932 | if (totient == NULL || pm1 == NULL || qm1 == NULL || gcd == NULL) { |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 933 | goto bn_err; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 934 | } |
| 935 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 936 | // We need the RSA components non-NULL. |
David Benjamin | 43780cb | 2017-04-10 18:05:19 -0400 | [diff] [blame] | 937 | if (!ensure_bignum(&rsa->n) || |
| 938 | !ensure_bignum(&rsa->d) || |
| 939 | !ensure_bignum(&rsa->e) || |
| 940 | !ensure_bignum(&rsa->p) || |
| 941 | !ensure_bignum(&rsa->q) || |
| 942 | !ensure_bignum(&rsa->dmp1) || |
| 943 | !ensure_bignum(&rsa->dmq1) || |
| 944 | !ensure_bignum(&rsa->iqmp)) { |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 945 | goto bn_err; |
David Benjamin | 6eb000d | 2015-02-11 01:17:41 -0500 | [diff] [blame] | 946 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 947 | |
David Benjamin | 1c703cb | 2015-06-11 21:42:14 -0400 | [diff] [blame] | 948 | if (!BN_copy(rsa->e, e_value)) { |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 949 | goto bn_err; |
David Benjamin | 1c703cb | 2015-06-11 21:42:14 -0400 | [diff] [blame] | 950 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 951 | |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 952 | int prime_bits = bits / 2; |
| 953 | do { |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 954 | // Generate p and q, each of size |prime_bits|, using the steps outlined in |
| 955 | // appendix FIPS 186-4 appendix B.3.3. |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 956 | if (!generate_prime(rsa->p, prime_bits, rsa->e, NULL, ctx, cb) || |
| 957 | !BN_GENCB_call(cb, 3, 0) || |
| 958 | !generate_prime(rsa->q, prime_bits, rsa->e, rsa->p, ctx, cb) || |
| 959 | !BN_GENCB_call(cb, 3, 1)) { |
| 960 | goto bn_err; |
David Benjamin | 6eb000d | 2015-02-11 01:17:41 -0500 | [diff] [blame] | 961 | } |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 962 | |
| 963 | if (BN_cmp(rsa->p, rsa->q) < 0) { |
| 964 | BIGNUM *tmp = rsa->p; |
| 965 | rsa->p = rsa->q; |
| 966 | rsa->q = tmp; |
David Benjamin | 6eb000d | 2015-02-11 01:17:41 -0500 | [diff] [blame] | 967 | } |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 968 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 969 | // Calculate d = e^(-1) (mod lcm(p-1, q-1)), per FIPS 186-4. This differs |
| 970 | // from typical RSA implementations which use (p-1)*(q-1). |
| 971 | // |
| 972 | // Note this means the size of d might reveal information about p-1 and |
| 973 | // q-1. However, we do operations with Chinese Remainder Theorem, so we only |
| 974 | // use d (mod p-1) and d (mod q-1) as exponents. Using a minimal totient |
| 975 | // does not affect those two values. |
David Benjamin | 61ae41f | 2017-05-04 13:50:39 -0400 | [diff] [blame] | 976 | if (!BN_sub(pm1, rsa->p, BN_value_one()) || |
| 977 | !BN_sub(qm1, rsa->q, BN_value_one()) || |
| 978 | !BN_mul(totient, pm1, qm1, ctx) || |
| 979 | !BN_gcd(gcd, pm1, qm1, ctx) || |
| 980 | !BN_div(totient, NULL, totient, gcd, ctx) || |
| 981 | !BN_mod_inverse(rsa->d, rsa->e, totient, ctx)) { |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 982 | goto bn_err; |
David Benjamin | 6eb000d | 2015-02-11 01:17:41 -0500 | [diff] [blame] | 983 | } |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 984 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 985 | // Check that |rsa->d| > 2^|prime_bits| and try again if it fails. See |
| 986 | // appendix B.3.1's guidance on values for d. |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 987 | } while (!rsa_greater_than_pow2(rsa->d, prime_bits)); |
| 988 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 989 | if (// Calculate n. |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 990 | !BN_mul(rsa->n, rsa->p, rsa->q, ctx) || |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 991 | // Calculate d mod (p-1). |
David Benjamin | 61ae41f | 2017-05-04 13:50:39 -0400 | [diff] [blame] | 992 | !BN_mod(rsa->dmp1, rsa->d, pm1, ctx) || |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 993 | // Calculate d mod (q-1) |
David Benjamin | 61ae41f | 2017-05-04 13:50:39 -0400 | [diff] [blame] | 994 | !BN_mod(rsa->dmq1, rsa->d, qm1, ctx)) { |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 995 | goto bn_err; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 996 | } |
Adam Langley | 839b881 | 2015-05-26 11:36:46 -0700 | [diff] [blame] | 997 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 998 | // Sanity-check that |rsa->n| has the specified size. This is implied by |
| 999 | // |generate_prime|'s bounds. |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 1000 | if (BN_num_bits(rsa->n) != (unsigned)bits) { |
| 1001 | OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1002 | goto err; |
David Benjamin | 6eb000d | 2015-02-11 01:17:41 -0500 | [diff] [blame] | 1003 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1004 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 1005 | // Calculate inverse of q mod p. Note that although RSA key generation is far |
| 1006 | // from constant-time, |bn_mod_inverse_secret_prime| uses the same modular |
| 1007 | // exponentation logic as in RSA private key operations and, if the RSAZ-1024 |
| 1008 | // code is enabled, will be optimized for common RSA prime sizes. |
David Benjamin | 0b8dc30 | 2016-12-17 14:27:16 -0500 | [diff] [blame] | 1009 | if (!BN_MONT_CTX_set_locked(&rsa->mont_p, &rsa->lock, rsa->p, ctx) || |
David Benjamin | 0a211df | 2016-12-17 15:25:55 -0500 | [diff] [blame] | 1010 | !bn_mod_inverse_secret_prime(rsa->iqmp, rsa->q, rsa->p, ctx, |
| 1011 | rsa->mont_p)) { |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 1012 | goto bn_err; |
David Benjamin | 6eb000d | 2015-02-11 01:17:41 -0500 | [diff] [blame] | 1013 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1014 | |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 1015 | // The key generation process is complex and thus error-prone. It could be |
| 1016 | // disastrous to generate and then use a bad key so double-check that the key |
| 1017 | // makes sense. |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 1018 | if (!RSA_check_key(rsa)) { |
Brian Smith | febf771 | 2016-03-21 13:47:32 -1000 | [diff] [blame] | 1019 | OPENSSL_PUT_ERROR(RSA, RSA_R_INTERNAL_ERROR); |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 1020 | goto err; |
Brian Smith | febf771 | 2016-03-21 13:47:32 -1000 | [diff] [blame] | 1021 | } |
| 1022 | |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 1023 | ret = 1; |
| 1024 | |
| 1025 | bn_err: |
| 1026 | if (!ret) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 1027 | OPENSSL_PUT_ERROR(RSA, ERR_LIB_BN); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1028 | } |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 1029 | err: |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1030 | if (ctx != NULL) { |
| 1031 | BN_CTX_end(ctx); |
| 1032 | BN_CTX_free(ctx); |
| 1033 | } |
David Benjamin | fb8b763 | 2017-04-10 18:35:22 -0400 | [diff] [blame] | 1034 | return ret; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1035 | } |
| 1036 | |
Steven Valdez | 467d322 | 2017-05-16 14:35:22 -0400 | [diff] [blame] | 1037 | int RSA_generate_key_fips(RSA *rsa, int bits, BN_GENCB *cb) { |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 1038 | // FIPS 186-4 allows 2048-bit and 3072-bit RSA keys (1024-bit and 1536-bit |
| 1039 | // primes, respectively) with the prime generation method we use. |
Steven Valdez | 467d322 | 2017-05-16 14:35:22 -0400 | [diff] [blame] | 1040 | if (bits != 2048 && bits != 3072) { |
| 1041 | OPENSSL_PUT_ERROR(RSA, RSA_R_BAD_RSA_PARAMETERS); |
| 1042 | return 0; |
| 1043 | } |
| 1044 | |
| 1045 | BIGNUM *e = BN_new(); |
| 1046 | int ret = e != NULL && |
| 1047 | BN_set_word(e, RSA_F4) && |
| 1048 | RSA_generate_key_ex(rsa, bits, e, cb) && |
| 1049 | RSA_check_fips(rsa); |
| 1050 | BN_free(e); |
| 1051 | return ret; |
| 1052 | } |
| 1053 | |
Adam Langley | 96dec44 | 2017-05-03 11:50:51 -0700 | [diff] [blame] | 1054 | DEFINE_METHOD_FUNCTION(RSA_METHOD, RSA_default_method) { |
David Benjamin | 808f832 | 2017-08-18 14:06:02 -0400 | [diff] [blame] | 1055 | // All of the methods are NULL to make it easier for the compiler/linker to |
| 1056 | // drop unused functions. The wrapper functions will select the appropriate |
| 1057 | // |rsa_default_*| implementation. |
Adam Langley | 96dec44 | 2017-05-03 11:50:51 -0700 | [diff] [blame] | 1058 | OPENSSL_memset(out, 0, sizeof(RSA_METHOD)); |
| 1059 | out->common.is_static = 1; |
| 1060 | out->flags = RSA_FLAG_CACHE_PUBLIC | RSA_FLAG_CACHE_PRIVATE; |
| 1061 | } |