Coverage Report

Created: 2022-11-30 06:20

/src/openssl/crypto/evp/p_lib.c
Line
Count
Source (jump to first uncovered line)
1
/* crypto/evp/p_lib.c */
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
#include "cryptlib.h"
61
#include <openssl/bn.h>
62
#include <openssl/err.h>
63
#include <openssl/objects.h>
64
#include <openssl/evp.h>
65
#include <openssl/asn1_mac.h>
66
#include <openssl/x509.h>
67
#ifndef OPENSSL_NO_RSA
68
# include <openssl/rsa.h>
69
#endif
70
#ifndef OPENSSL_NO_DSA
71
# include <openssl/dsa.h>
72
#endif
73
#ifndef OPENSSL_NO_DH
74
# include <openssl/dh.h>
75
#endif
76
77
#ifndef OPENSSL_NO_ENGINE
78
# include <openssl/engine.h>
79
#endif
80
81
#include "asn1_locl.h"
82
83
static void EVP_PKEY_free_it(EVP_PKEY *x);
84
85
int EVP_PKEY_bits(EVP_PKEY *pkey)
86
0
{
87
0
    if (pkey && pkey->ameth && pkey->ameth->pkey_bits)
88
0
        return pkey->ameth->pkey_bits(pkey);
89
0
    return 0;
90
0
}
91
92
int EVP_PKEY_size(EVP_PKEY *pkey)
93
0
{
94
0
    if (pkey && pkey->ameth && pkey->ameth->pkey_size)
95
0
        return pkey->ameth->pkey_size(pkey);
96
0
    return 0;
97
0
}
98
99
int EVP_PKEY_save_parameters(EVP_PKEY *pkey, int mode)
100
0
{
101
0
#ifndef OPENSSL_NO_DSA
102
0
    if (pkey->type == EVP_PKEY_DSA) {
103
0
        int ret = pkey->save_parameters;
104
105
0
        if (mode >= 0)
106
0
            pkey->save_parameters = mode;
107
0
        return (ret);
108
0
    }
109
0
#endif
110
0
#ifndef OPENSSL_NO_EC
111
0
    if (pkey->type == EVP_PKEY_EC) {
112
0
        int ret = pkey->save_parameters;
113
114
0
        if (mode >= 0)
115
0
            pkey->save_parameters = mode;
116
0
        return (ret);
117
0
    }
118
0
#endif
119
0
    return (0);
120
0
}
121
122
int EVP_PKEY_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from)
123
0
{
124
0
    if (to->type != from->type) {
125
0
        EVPerr(EVP_F_EVP_PKEY_COPY_PARAMETERS, EVP_R_DIFFERENT_KEY_TYPES);
126
0
        goto err;
127
0
    }
128
129
0
    if (EVP_PKEY_missing_parameters(from)) {
130
0
        EVPerr(EVP_F_EVP_PKEY_COPY_PARAMETERS, EVP_R_MISSING_PARAMETERS);
131
0
        goto err;
132
0
    }
133
134
0
    if (!EVP_PKEY_missing_parameters(to)) {
135
0
        if (EVP_PKEY_cmp_parameters(to, from) == 1)
136
0
            return 1;
137
0
        EVPerr(EVP_F_EVP_PKEY_COPY_PARAMETERS, EVP_R_DIFFERENT_PARAMETERS);
138
0
        return 0;
139
0
    }
140
141
0
    if (from->ameth && from->ameth->param_copy)
142
0
        return from->ameth->param_copy(to, from);
143
0
 err:
144
0
    return 0;
145
0
}
146
147
int EVP_PKEY_missing_parameters(const EVP_PKEY *pkey)
148
0
{
149
0
    if (pkey->ameth && pkey->ameth->param_missing)
150
0
        return pkey->ameth->param_missing(pkey);
151
0
    return 0;
152
0
}
153
154
int EVP_PKEY_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
155
0
{
156
0
    if (a->type != b->type)
157
0
        return -1;
158
0
    if (a->ameth && a->ameth->param_cmp)
159
0
        return a->ameth->param_cmp(a, b);
160
0
    return -2;
161
0
}
162
163
int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
164
0
{
165
0
    if (a->type != b->type)
166
0
        return -1;
167
168
0
    if (a->ameth) {
169
0
        int ret;
170
        /* Compare parameters if the algorithm has them */
171
0
        if (a->ameth->param_cmp) {
172
0
            ret = a->ameth->param_cmp(a, b);
173
0
            if (ret <= 0)
174
0
                return ret;
175
0
        }
176
177
0
        if (a->ameth->pub_cmp)
178
0
            return a->ameth->pub_cmp(a, b);
179
0
    }
180
181
0
    return -2;
182
0
}
183
184
EVP_PKEY *EVP_PKEY_new(void)
185
0
{
186
0
    EVP_PKEY *ret;
187
188
0
    ret = (EVP_PKEY *)OPENSSL_malloc(sizeof(EVP_PKEY));
189
0
    if (ret == NULL) {
190
0
        EVPerr(EVP_F_EVP_PKEY_NEW, ERR_R_MALLOC_FAILURE);
191
0
        return (NULL);
192
0
    }
193
0
    ret->type = EVP_PKEY_NONE;
194
0
    ret->save_type = EVP_PKEY_NONE;
195
0
    ret->references = 1;
196
0
    ret->ameth = NULL;
197
0
    ret->engine = NULL;
198
0
    ret->pkey.ptr = NULL;
199
0
    ret->attributes = NULL;
200
0
    ret->save_parameters = 1;
201
0
    return (ret);
202
0
}
203
204
/*
205
 * Setup a public key ASN1 method and ENGINE from a NID or a string. If pkey
206
 * is NULL just return 1 or 0 if the algorithm exists.
207
 */
208
209
static int pkey_set_type(EVP_PKEY *pkey, int type, const char *str, int len)
210
0
{
211
0
    const EVP_PKEY_ASN1_METHOD *ameth;
212
0
    ENGINE *e = NULL;
213
0
    if (pkey) {
214
0
        if (pkey->pkey.ptr)
215
0
            EVP_PKEY_free_it(pkey);
216
        /*
217
         * If key type matches and a method exists then this lookup has
218
         * succeeded once so just indicate success.
219
         */
220
0
        if ((type == pkey->save_type) && pkey->ameth)
221
0
            return 1;
222
0
#ifndef OPENSSL_NO_ENGINE
223
        /* If we have an ENGINE release it */
224
0
        if (pkey->engine) {
225
0
            ENGINE_finish(pkey->engine);
226
0
            pkey->engine = NULL;
227
0
        }
228
0
#endif
229
0
    }
230
0
    if (str)
231
0
        ameth = EVP_PKEY_asn1_find_str(&e, str, len);
232
0
    else
233
0
        ameth = EVP_PKEY_asn1_find(&e, type);
234
0
#ifndef OPENSSL_NO_ENGINE
235
0
    if (!pkey && e)
236
0
        ENGINE_finish(e);
237
0
#endif
238
0
    if (!ameth) {
239
0
        EVPerr(EVP_F_PKEY_SET_TYPE, EVP_R_UNSUPPORTED_ALGORITHM);
240
0
        return 0;
241
0
    }
242
0
    if (pkey) {
243
0
        pkey->ameth = ameth;
244
0
        pkey->engine = e;
245
246
0
        pkey->type = pkey->ameth->pkey_id;
247
0
        pkey->save_type = type;
248
0
    }
249
0
    return 1;
250
0
}
251
252
int EVP_PKEY_set_type(EVP_PKEY *pkey, int type)
253
0
{
254
0
    return pkey_set_type(pkey, type, NULL, -1);
255
0
}
256
257
int EVP_PKEY_set_type_str(EVP_PKEY *pkey, const char *str, int len)
258
0
{
259
0
    return pkey_set_type(pkey, EVP_PKEY_NONE, str, len);
260
0
}
261
262
int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key)
263
0
{
264
0
    if (pkey == NULL || !EVP_PKEY_set_type(pkey, type))
265
0
        return 0;
266
0
    pkey->pkey.ptr = key;
267
0
    return (key != NULL);
268
0
}
269
270
void *EVP_PKEY_get0(EVP_PKEY *pkey)
271
0
{
272
0
    return pkey->pkey.ptr;
273
0
}
274
275
#ifndef OPENSSL_NO_RSA
276
int EVP_PKEY_set1_RSA(EVP_PKEY *pkey, RSA *key)
277
0
{
278
0
    int ret = EVP_PKEY_assign_RSA(pkey, key);
279
0
    if (ret)
280
0
        RSA_up_ref(key);
281
0
    return ret;
282
0
}
283
284
RSA *EVP_PKEY_get1_RSA(EVP_PKEY *pkey)
285
0
{
286
0
    if (pkey->type != EVP_PKEY_RSA) {
287
0
        EVPerr(EVP_F_EVP_PKEY_GET1_RSA, EVP_R_EXPECTING_AN_RSA_KEY);
288
0
        return NULL;
289
0
    }
290
0
    RSA_up_ref(pkey->pkey.rsa);
291
0
    return pkey->pkey.rsa;
292
0
}
293
#endif
294
295
#ifndef OPENSSL_NO_DSA
296
int EVP_PKEY_set1_DSA(EVP_PKEY *pkey, DSA *key)
297
0
{
298
0
    int ret = EVP_PKEY_assign_DSA(pkey, key);
299
0
    if (ret)
300
0
        DSA_up_ref(key);
301
0
    return ret;
302
0
}
303
304
DSA *EVP_PKEY_get1_DSA(EVP_PKEY *pkey)
305
0
{
306
0
    if (pkey->type != EVP_PKEY_DSA) {
307
0
        EVPerr(EVP_F_EVP_PKEY_GET1_DSA, EVP_R_EXPECTING_A_DSA_KEY);
308
0
        return NULL;
309
0
    }
310
0
    DSA_up_ref(pkey->pkey.dsa);
311
0
    return pkey->pkey.dsa;
312
0
}
313
#endif
314
315
#ifndef OPENSSL_NO_EC
316
317
int EVP_PKEY_set1_EC_KEY(EVP_PKEY *pkey, EC_KEY *key)
318
0
{
319
0
    int ret = EVP_PKEY_assign_EC_KEY(pkey, key);
320
0
    if (ret)
321
0
        EC_KEY_up_ref(key);
322
0
    return ret;
323
0
}
324
325
EC_KEY *EVP_PKEY_get1_EC_KEY(EVP_PKEY *pkey)
326
0
{
327
0
    if (pkey->type != EVP_PKEY_EC) {
328
0
        EVPerr(EVP_F_EVP_PKEY_GET1_EC_KEY, EVP_R_EXPECTING_A_EC_KEY);
329
0
        return NULL;
330
0
    }
331
0
    EC_KEY_up_ref(pkey->pkey.ec);
332
0
    return pkey->pkey.ec;
333
0
}
334
#endif
335
336
#ifndef OPENSSL_NO_DH
337
338
int EVP_PKEY_set1_DH(EVP_PKEY *pkey, DH *key)
339
0
{
340
0
    int ret = EVP_PKEY_assign_DH(pkey, key);
341
0
    if (ret)
342
0
        DH_up_ref(key);
343
0
    return ret;
344
0
}
345
346
DH *EVP_PKEY_get1_DH(EVP_PKEY *pkey)
347
0
{
348
0
    if (pkey->type != EVP_PKEY_DH && pkey->type != EVP_PKEY_DHX) {
349
0
        EVPerr(EVP_F_EVP_PKEY_GET1_DH, EVP_R_EXPECTING_A_DH_KEY);
350
0
        return NULL;
351
0
    }
352
0
    DH_up_ref(pkey->pkey.dh);
353
0
    return pkey->pkey.dh;
354
0
}
355
#endif
356
357
int EVP_PKEY_type(int type)
358
0
{
359
0
    int ret;
360
0
    const EVP_PKEY_ASN1_METHOD *ameth;
361
0
    ENGINE *e;
362
0
    ameth = EVP_PKEY_asn1_find(&e, type);
363
0
    if (ameth)
364
0
        ret = ameth->pkey_id;
365
0
    else
366
0
        ret = NID_undef;
367
0
#ifndef OPENSSL_NO_ENGINE
368
0
    if (e)
369
0
        ENGINE_finish(e);
370
0
#endif
371
0
    return ret;
372
0
}
373
374
int EVP_PKEY_id(const EVP_PKEY *pkey)
375
0
{
376
0
    return pkey->type;
377
0
}
378
379
int EVP_PKEY_base_id(const EVP_PKEY *pkey)
380
0
{
381
0
    return EVP_PKEY_type(pkey->type);
382
0
}
383
384
void EVP_PKEY_free(EVP_PKEY *x)
385
157k
{
386
157k
    int i;
387
388
157k
    if (x == NULL)
389
157k
        return;
390
391
0
    i = CRYPTO_add(&x->references, -1, CRYPTO_LOCK_EVP_PKEY);
392
#ifdef REF_PRINT
393
    REF_PRINT("EVP_PKEY", x);
394
#endif
395
0
    if (i > 0)
396
0
        return;
397
#ifdef REF_CHECK
398
    if (i < 0) {
399
        fprintf(stderr, "EVP_PKEY_free, bad reference count\n");
400
        abort();
401
    }
402
#endif
403
0
    EVP_PKEY_free_it(x);
404
0
    if (x->attributes)
405
0
        sk_X509_ATTRIBUTE_pop_free(x->attributes, X509_ATTRIBUTE_free);
406
0
    OPENSSL_free(x);
407
0
}
408
409
static void EVP_PKEY_free_it(EVP_PKEY *x)
410
0
{
411
0
    if (x->ameth && x->ameth->pkey_free) {
412
0
        x->ameth->pkey_free(x);
413
0
        x->pkey.ptr = NULL;
414
0
    }
415
0
#ifndef OPENSSL_NO_ENGINE
416
0
    if (x->engine) {
417
0
        ENGINE_finish(x->engine);
418
0
        x->engine = NULL;
419
0
    }
420
0
#endif
421
0
}
422
423
static int unsup_alg(BIO *out, const EVP_PKEY *pkey, int indent,
424
                     const char *kstr)
425
0
{
426
0
    BIO_indent(out, indent, 128);
427
0
    BIO_printf(out, "%s algorithm \"%s\" unsupported\n",
428
0
               kstr, OBJ_nid2ln(pkey->type));
429
0
    return 1;
430
0
}
431
432
int EVP_PKEY_print_public(BIO *out, const EVP_PKEY *pkey,
433
                          int indent, ASN1_PCTX *pctx)
434
0
{
435
0
    if (pkey->ameth && pkey->ameth->pub_print)
436
0
        return pkey->ameth->pub_print(out, pkey, indent, pctx);
437
438
0
    return unsup_alg(out, pkey, indent, "Public Key");
439
0
}
440
441
int EVP_PKEY_print_private(BIO *out, const EVP_PKEY *pkey,
442
                           int indent, ASN1_PCTX *pctx)
443
0
{
444
0
    if (pkey->ameth && pkey->ameth->priv_print)
445
0
        return pkey->ameth->priv_print(out, pkey, indent, pctx);
446
447
0
    return unsup_alg(out, pkey, indent, "Private Key");
448
0
}
449
450
int EVP_PKEY_print_params(BIO *out, const EVP_PKEY *pkey,
451
                          int indent, ASN1_PCTX *pctx)
452
0
{
453
0
    if (pkey->ameth && pkey->ameth->param_print)
454
0
        return pkey->ameth->param_print(out, pkey, indent, pctx);
455
0
    return unsup_alg(out, pkey, indent, "Parameters");
456
0
}
457
458
int EVP_PKEY_get_default_digest_nid(EVP_PKEY *pkey, int *pnid)
459
0
{
460
0
    if (!pkey->ameth || !pkey->ameth->pkey_ctrl)
461
0
        return -2;
462
0
    return pkey->ameth->pkey_ctrl(pkey, ASN1_PKEY_CTRL_DEFAULT_MD_NID,
463
0
                                  0, pnid);
464
0
}