Coverage Report

Created: 2022-08-24 06:30

/src/libressl/crypto/rsa/rsa_lib.c
Line
Count
Source (jump to first uncovered line)
1
/* $OpenBSD: rsa_lib.c,v 1.43 2022/06/27 12:30:28 tb Exp $ */
2
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3
 * All rights reserved.
4
 *
5
 * This package is an SSL implementation written
6
 * by Eric Young (eay@cryptsoft.com).
7
 * The implementation was written so as to conform with Netscapes SSL.
8
 *
9
 * This library is free for commercial and non-commercial use as long as
10
 * the following conditions are aheared to.  The following conditions
11
 * apply to all code found in this distribution, be it the RC4, RSA,
12
 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13
 * included with this distribution is covered by the same copyright terms
14
 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15
 *
16
 * Copyright remains Eric Young's, and as such any Copyright notices in
17
 * the code are not to be removed.
18
 * If this package is used in a product, Eric Young should be given attribution
19
 * as the author of the parts of the library used.
20
 * This can be in the form of a textual message at program startup or
21
 * in documentation (online or textual) provided with the package.
22
 *
23
 * Redistribution and use in source and binary forms, with or without
24
 * modification, are permitted provided that the following conditions
25
 * are met:
26
 * 1. Redistributions of source code must retain the copyright
27
 *    notice, this list of conditions and the following disclaimer.
28
 * 2. Redistributions in binary form must reproduce the above copyright
29
 *    notice, this list of conditions and the following disclaimer in the
30
 *    documentation and/or other materials provided with the distribution.
31
 * 3. All advertising materials mentioning features or use of this software
32
 *    must display the following acknowledgement:
33
 *    "This product includes cryptographic software written by
34
 *     Eric Young (eay@cryptsoft.com)"
35
 *    The word 'cryptographic' can be left out if the rouines from the library
36
 *    being used are not cryptographic related :-).
37
 * 4. If you include any Windows specific code (or a derivative thereof) from
38
 *    the apps directory (application code) you must include an acknowledgement:
39
 *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40
 *
41
 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51
 * SUCH DAMAGE.
52
 *
53
 * The licence and distribution terms for any publically available version or
54
 * derivative of this code cannot be changed.  i.e. this code cannot simply be
55
 * copied and put under another distribution licence
56
 * [including the GNU Public Licence.]
57
 */
58
59
#include <stdio.h>
60
61
#include <openssl/opensslconf.h>
62
63
#include <openssl/bn.h>
64
#include <openssl/crypto.h>
65
#include <openssl/err.h>
66
#include <openssl/evp.h>
67
#include <openssl/lhash.h>
68
#include <openssl/rsa.h>
69
70
#include "evp_locl.h"
71
#include "rsa_locl.h"
72
73
#ifndef OPENSSL_NO_ENGINE
74
#include <openssl/engine.h>
75
#endif
76
77
static const RSA_METHOD *default_RSA_meth = NULL;
78
79
RSA *
80
RSA_new(void)
81
0
{
82
0
  RSA *r = RSA_new_method(NULL);
83
84
0
  return r;
85
0
}
86
87
void
88
RSA_set_default_method(const RSA_METHOD *meth)
89
0
{
90
0
  default_RSA_meth = meth;
91
0
}
92
93
const RSA_METHOD *
94
RSA_get_default_method(void)
95
0
{
96
0
  if (default_RSA_meth == NULL)
97
0
    default_RSA_meth = RSA_PKCS1_SSLeay();
98
99
0
  return default_RSA_meth;
100
0
}
101
102
const RSA_METHOD *
103
RSA_get_method(const RSA *rsa)
104
0
{
105
0
  return rsa->meth;
106
0
}
107
108
int
109
RSA_set_method(RSA *rsa, const RSA_METHOD *meth)
110
0
{
111
  /*
112
   * NB: The caller is specifically setting a method, so it's not up to us
113
   * to deal with which ENGINE it comes from.
114
   */
115
0
  const RSA_METHOD *mtmp;
116
117
0
  mtmp = rsa->meth;
118
0
  if (mtmp->finish)
119
0
    mtmp->finish(rsa);
120
0
#ifndef OPENSSL_NO_ENGINE
121
0
  ENGINE_finish(rsa->engine);
122
0
  rsa->engine = NULL;
123
0
#endif
124
0
  rsa->meth = meth;
125
0
  if (meth->init)
126
0
    meth->init(rsa);
127
0
  return 1;
128
0
}
129
130
RSA *
131
RSA_new_method(ENGINE *engine)
132
0
{
133
0
  RSA *ret;
134
135
0
  if ((ret = calloc(1, sizeof(RSA))) == NULL) {
136
0
    RSAerror(ERR_R_MALLOC_FAILURE);
137
0
    return NULL;
138
0
  }
139
140
0
  ret->meth = RSA_get_default_method();
141
142
0
#ifndef OPENSSL_NO_ENGINE
143
0
  if (engine != NULL) {
144
0
    if (!ENGINE_init(engine)) {
145
0
      RSAerror(ERR_R_ENGINE_LIB);
146
0
      goto err;
147
0
    }
148
0
    ret->engine = engine;
149
0
  } else {
150
0
    ret->engine = ENGINE_get_default_RSA();
151
0
  }
152
153
0
  if (ret->engine != NULL) {
154
0
    if ((ret->meth = ENGINE_get_RSA(ret->engine)) == NULL) {
155
0
      RSAerror(ERR_R_ENGINE_LIB);
156
0
      goto err;
157
0
    }
158
0
  }
159
0
#endif
160
161
0
  ret->references = 1;
162
0
  ret->flags = ret->meth->flags & ~RSA_FLAG_NON_FIPS_ALLOW;
163
164
0
  if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_RSA, ret, &ret->ex_data))
165
0
    goto err;
166
167
0
  if (ret->meth->init != NULL && !ret->meth->init(ret)) {
168
0
    CRYPTO_free_ex_data(CRYPTO_EX_INDEX_RSA, ret, &ret->ex_data);
169
0
    goto err;
170
0
  }
171
172
0
  return ret;
173
174
0
 err:
175
0
#ifndef OPENSSL_NO_ENGINE
176
0
  ENGINE_finish(ret->engine);
177
0
#endif
178
0
  free(ret);
179
180
0
  return NULL;
181
0
}
182
183
void
184
RSA_free(RSA *r)
185
0
{
186
0
  int i;
187
188
0
  if (r == NULL)
189
0
    return;
190
191
0
  i = CRYPTO_add(&r->references, -1, CRYPTO_LOCK_RSA);
192
0
  if (i > 0)
193
0
    return;
194
195
0
  if (r->meth->finish)
196
0
    r->meth->finish(r);
197
0
#ifndef OPENSSL_NO_ENGINE
198
0
  ENGINE_finish(r->engine);
199
0
#endif
200
201
0
  CRYPTO_free_ex_data(CRYPTO_EX_INDEX_RSA, r, &r->ex_data);
202
203
0
  BN_clear_free(r->n);
204
0
  BN_clear_free(r->e);
205
0
  BN_clear_free(r->d);
206
0
  BN_clear_free(r->p);
207
0
  BN_clear_free(r->q);
208
0
  BN_clear_free(r->dmp1);
209
0
  BN_clear_free(r->dmq1);
210
0
  BN_clear_free(r->iqmp);
211
0
  BN_BLINDING_free(r->blinding);
212
0
  BN_BLINDING_free(r->mt_blinding);
213
0
  RSA_PSS_PARAMS_free(r->pss);
214
0
  free(r);
215
0
}
216
217
int
218
RSA_up_ref(RSA *r)
219
0
{
220
0
  int i = CRYPTO_add(&r->references, 1, CRYPTO_LOCK_RSA);
221
0
  return i > 1 ? 1 : 0;
222
0
}
223
224
int
225
RSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
226
    CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
227
0
{
228
0
  return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_RSA, argl, argp,
229
0
      new_func, dup_func, free_func);
230
0
}
231
232
int
233
RSA_set_ex_data(RSA *r, int idx, void *arg)
234
0
{
235
0
  return CRYPTO_set_ex_data(&r->ex_data, idx, arg);
236
0
}
237
238
void *
239
RSA_get_ex_data(const RSA *r, int idx)
240
0
{
241
0
  return CRYPTO_get_ex_data(&r->ex_data, idx);
242
0
}
243
244
int
245
RSA_security_bits(const RSA *rsa)
246
0
{
247
0
  return BN_security_bits(RSA_bits(rsa), -1);
248
0
}
249
250
void
251
RSA_get0_key(const RSA *r, const BIGNUM **n, const BIGNUM **e, const BIGNUM **d)
252
0
{
253
0
  if (n != NULL)
254
0
    *n = r->n;
255
0
  if (e != NULL)
256
0
    *e = r->e;
257
0
  if (d != NULL)
258
0
    *d = r->d;
259
0
}
260
261
int
262
RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d)
263
0
{
264
0
  if ((r->n == NULL && n == NULL) || (r->e == NULL && e == NULL))
265
0
    return 0;
266
267
0
  if (n != NULL) {
268
0
    BN_free(r->n);
269
0
    r->n = n;
270
0
  }
271
0
  if (e != NULL) {
272
0
    BN_free(r->e);
273
0
    r->e = e;
274
0
  }
275
0
  if (d != NULL) {
276
0
    BN_free(r->d);
277
0
    r->d = d;
278
0
  }
279
280
0
  return 1;
281
0
}
282
283
void
284
RSA_get0_crt_params(const RSA *r, const BIGNUM **dmp1, const BIGNUM **dmq1,
285
    const BIGNUM **iqmp)
286
0
{
287
0
  if (dmp1 != NULL)
288
0
    *dmp1 = r->dmp1;
289
0
  if (dmq1 != NULL)
290
0
    *dmq1 = r->dmq1;
291
0
  if (iqmp != NULL)
292
0
    *iqmp = r->iqmp;
293
0
}
294
295
int
296
RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp)
297
0
{
298
0
  if ((r->dmp1 == NULL && dmp1 == NULL) ||
299
0
      (r->dmq1 == NULL && dmq1 == NULL) ||
300
0
      (r->iqmp == NULL && iqmp == NULL))
301
0
          return 0;
302
303
0
  if (dmp1 != NULL) {
304
0
    BN_free(r->dmp1);
305
0
    r->dmp1 = dmp1;
306
0
  }
307
0
  if (dmq1 != NULL) {
308
0
    BN_free(r->dmq1);
309
0
    r->dmq1 = dmq1;
310
0
  }
311
0
  if (iqmp != NULL) {
312
0
    BN_free(r->iqmp);
313
0
    r->iqmp = iqmp;
314
0
  }
315
316
0
  return 1;
317
0
}
318
319
void
320
RSA_get0_factors(const RSA *r, const BIGNUM **p, const BIGNUM **q)
321
0
{
322
0
  if (p != NULL)
323
0
    *p = r->p;
324
0
  if (q != NULL)
325
0
    *q = r->q;
326
0
}
327
328
int
329
RSA_set0_factors(RSA *r, BIGNUM *p, BIGNUM *q)
330
0
{
331
0
  if ((r->p == NULL && p == NULL) || (r->q == NULL && q == NULL))
332
0
    return 0;
333
334
0
  if (p != NULL) {
335
0
    BN_free(r->p);
336
0
    r->p = p;
337
0
  }
338
0
  if (q != NULL) {
339
0
    BN_free(r->q);
340
0
    r->q = q;
341
0
  }
342
343
0
  return 1;
344
0
}
345
346
const BIGNUM *
347
RSA_get0_n(const RSA *r)
348
0
{
349
0
  return r->n;
350
0
}
351
352
const BIGNUM *
353
RSA_get0_e(const RSA *r)
354
0
{
355
0
  return r->e;
356
0
}
357
358
const BIGNUM *
359
RSA_get0_d(const RSA *r)
360
0
{
361
0
  return r->d;
362
0
}
363
364
const BIGNUM *
365
RSA_get0_p(const RSA *r)
366
0
{
367
0
  return r->p;
368
0
}
369
370
const BIGNUM *
371
RSA_get0_q(const RSA *r)
372
0
{
373
0
  return r->q;
374
0
}
375
376
const BIGNUM *
377
RSA_get0_dmp1(const RSA *r)
378
0
{
379
0
  return r->dmp1;
380
0
}
381
382
const BIGNUM *
383
RSA_get0_dmq1(const RSA *r)
384
0
{
385
0
  return r->dmq1;
386
0
}
387
388
const BIGNUM *
389
RSA_get0_iqmp(const RSA *r)
390
0
{
391
0
  return r->iqmp;
392
0
}
393
394
const RSA_PSS_PARAMS *
395
RSA_get0_pss_params(const RSA *r)
396
0
{
397
0
  return r->pss;
398
0
}
399
400
void
401
RSA_clear_flags(RSA *r, int flags)
402
0
{
403
0
  r->flags &= ~flags;
404
0
}
405
406
int
407
RSA_test_flags(const RSA *r, int flags)
408
0
{
409
0
  return r->flags & flags;
410
0
}
411
412
void
413
RSA_set_flags(RSA *r, int flags)
414
0
{
415
0
  r->flags |= flags;
416
0
}
417
418
int
419
RSA_pkey_ctx_ctrl(EVP_PKEY_CTX *ctx, int optype, int cmd, int p1, void *p2)
420
0
{
421
  /* Return an error if the key type is not RSA or RSA-PSS. */
422
0
  if (ctx != NULL && ctx->pmeth != NULL &&
423
0
      ctx->pmeth->pkey_id != EVP_PKEY_RSA &&
424
0
      ctx->pmeth->pkey_id != EVP_PKEY_RSA_PSS)
425
0
    return -1;
426
427
0
  return EVP_PKEY_CTX_ctrl(ctx, -1, optype, cmd, p1, p2);
428
0
}