Deprecate EVP_KEY_new_CMAC_key and EVP_PKEY_new_CMAC_key_ex
[openssl.git] / crypto / evp / p_lib.c
1 /*
2  * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 /*
11  * DSA low level APIs are deprecated for public use, but still ok for
12  * internal use.
13  */
14 #include "internal/deprecated.h"
15
16 #include <stdio.h>
17 #include "internal/cryptlib.h"
18 #include "internal/refcount.h"
19 #include <openssl/bn.h>
20 #include <openssl/err.h>
21 #include <openssl/objects.h>
22 #include <openssl/evp.h>
23 #include <openssl/x509.h>
24 #include <openssl/rsa.h>
25 #include <openssl/dsa.h>
26 #include <openssl/dh.h>
27 #include <openssl/ec.h>
28 #include <openssl/cmac.h>
29 #include <openssl/engine.h>
30 #include <openssl/params.h>
31 #include <openssl/param_build.h>
32 #include <openssl/encoder.h>
33 #include <openssl/core_names.h>
34
35 #include "internal/ffc.h"
36 #include "crypto/asn1.h"
37 #include "crypto/evp.h"
38 #include "crypto/ec.h"
39 #include "crypto/ecx.h"
40 #include "internal/provider.h"
41 #include "evp_local.h"
42
43 #include "crypto/ec.h"
44
45 /* TODO remove this when the EVP_PKEY_is_a() #legacy support hack is removed */
46 #include "e_os.h"                /* strcasecmp on Windows */
47
48 static int pkey_set_type(EVP_PKEY *pkey, ENGINE *e, int type, const char *str,
49                          int len, EVP_KEYMGMT *keymgmt);
50 static void evp_pkey_free_it(EVP_PKEY *key);
51
52 #ifndef FIPS_MODULE
53
54 /* The type of parameters selected in key parameter functions */
55 # define SELECT_PARAMETERS OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS
56
57 int EVP_PKEY_bits(const EVP_PKEY *pkey)
58 {
59     int size = 0;
60
61     if (pkey != NULL) {
62         size = pkey->cache.bits;
63         if (pkey->ameth != NULL && pkey->ameth->pkey_bits != NULL)
64             size = pkey->ameth->pkey_bits(pkey);
65     }
66     return size < 0 ? 0 : size;
67 }
68
69 int EVP_PKEY_security_bits(const EVP_PKEY *pkey)
70 {
71     int size = 0;
72
73     if (pkey != NULL) {
74         size = pkey->cache.security_bits;
75         if (pkey->ameth != NULL && pkey->ameth->pkey_security_bits != NULL)
76             size = pkey->ameth->pkey_security_bits(pkey);
77     }
78     return size < 0 ? 0 : size;
79 }
80
81 int EVP_PKEY_save_parameters(EVP_PKEY *pkey, int mode)
82 {
83 # ifndef OPENSSL_NO_DSA
84     if (pkey->type == EVP_PKEY_DSA) {
85         int ret = pkey->save_parameters;
86
87         if (mode >= 0)
88             pkey->save_parameters = mode;
89         return ret;
90     }
91 # endif
92 # ifndef OPENSSL_NO_EC
93     if (pkey->type == EVP_PKEY_EC) {
94         int ret = pkey->save_parameters;
95
96         if (mode >= 0)
97             pkey->save_parameters = mode;
98         return ret;
99     }
100 # endif
101     return 0;
102 }
103
104 int EVP_PKEY_set_ex_data(EVP_PKEY *key, int idx, void *arg)
105 {
106     return CRYPTO_set_ex_data(&key->ex_data, idx, arg);
107 }
108
109 void *EVP_PKEY_get_ex_data(const EVP_PKEY *key, int idx)
110 {
111     return CRYPTO_get_ex_data(&key->ex_data, idx);
112 }
113
114 int EVP_PKEY_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from)
115 {
116     /*
117      * TODO: clean up legacy stuff from this function when legacy support
118      * is gone.
119      */
120
121     /*
122      * If |to| is a legacy key and |from| isn't, we must downgrade |from|.
123      * If that fails, this function fails.
124      */
125     if (evp_pkey_is_legacy(to) && evp_pkey_is_provided(from))
126         if (!evp_pkey_downgrade((EVP_PKEY *)from))
127             return 0;
128
129     /*
130      * Make sure |to| is typed.  Content is less important at this early
131      * stage.
132      *
133      * 1.  If |to| is untyped, assign |from|'s key type to it.
134      * 2.  If |to| contains a legacy key, compare its |type| to |from|'s.
135      *     (|from| was already downgraded above)
136      *
137      * If |to| is a provided key, there's nothing more to do here, functions
138      * like evp_keymgmt_util_copy() and evp_pkey_export_to_provider() called
139      * further down help us find out if they are the same or not.
140      */
141     if (evp_pkey_is_blank(to)) {
142         if (evp_pkey_is_legacy(from)) {
143             if (EVP_PKEY_set_type(to, from->type) == 0)
144                 return 0;
145         } else {
146             if (EVP_PKEY_set_type_by_keymgmt(to, from->keymgmt) == 0)
147                 return 0;
148         }
149     } else if (evp_pkey_is_legacy(to)) {
150         if (to->type != from->type) {
151             ERR_raise(ERR_LIB_EVP, EVP_R_DIFFERENT_KEY_TYPES);
152             goto err;
153         }
154     }
155
156     if (EVP_PKEY_missing_parameters(from)) {
157         ERR_raise(ERR_LIB_EVP, EVP_R_MISSING_PARAMETERS);
158         goto err;
159     }
160
161     if (!EVP_PKEY_missing_parameters(to)) {
162         if (EVP_PKEY_parameters_eq(to, from) == 1)
163             return 1;
164         ERR_raise(ERR_LIB_EVP, EVP_R_DIFFERENT_PARAMETERS);
165         return 0;
166     }
167
168     /* For purely provided keys, we just call the keymgmt utility */
169     if (to->keymgmt != NULL && from->keymgmt != NULL)
170         return evp_keymgmt_util_copy(to, (EVP_PKEY *)from, SELECT_PARAMETERS);
171
172     /*
173      * If |to| is provided, we know that |from| is legacy at this point.
174      * Try exporting |from| to |to|'s keymgmt, then use evp_keymgmt_copy()
175      * to copy the appropriate data to |to|'s keydata.
176      */
177     if (to->keymgmt != NULL) {
178         EVP_KEYMGMT *to_keymgmt = to->keymgmt;
179         void *from_keydata =
180             evp_pkey_export_to_provider((EVP_PKEY *)from, NULL, &to_keymgmt,
181                                         NULL);
182
183         /*
184          * If we get a NULL, it could be an internal error, or it could be
185          * that there's a key mismatch.  We're pretending the latter...
186          */
187         if (from_keydata == NULL) {
188             ERR_raise(ERR_LIB_EVP, EVP_R_DIFFERENT_KEY_TYPES);
189             return 0;
190         }
191         return evp_keymgmt_copy(to->keymgmt, to->keydata, from_keydata,
192                                 SELECT_PARAMETERS);
193     }
194
195     /* Both keys are legacy */
196     if (from->ameth != NULL && from->ameth->param_copy != NULL)
197         return from->ameth->param_copy(to, from);
198  err:
199     return 0;
200 }
201
202 int EVP_PKEY_missing_parameters(const EVP_PKEY *pkey)
203 {
204     if (pkey != NULL) {
205         if (pkey->keymgmt != NULL)
206             return !evp_keymgmt_util_has((EVP_PKEY *)pkey, SELECT_PARAMETERS);
207         else if (pkey->ameth != NULL && pkey->ameth->param_missing != NULL)
208             return pkey->ameth->param_missing(pkey);
209     }
210     return 0;
211 }
212
213 /*
214  * This function is called for any mixture of keys except pure legacy pair.
215  * TODO When legacy keys are gone, we replace a call to this functions with
216  * a call to evp_keymgmt_util_match().
217  */
218 static int evp_pkey_cmp_any(const EVP_PKEY *a, const EVP_PKEY *b,
219                             int selection)
220 {
221     EVP_KEYMGMT *keymgmt1 = NULL, *keymgmt2 = NULL;
222     void *keydata1 = NULL, *keydata2 = NULL, *tmp_keydata = NULL;
223
224     /* If none of them are provided, this function shouldn't have been called */
225     if (!ossl_assert(evp_pkey_is_provided(a) || evp_pkey_is_provided(b)))
226         return -2;
227
228     /* For purely provided keys, we just call the keymgmt utility */
229     if (evp_pkey_is_provided(a) && evp_pkey_is_provided(b))
230         return evp_keymgmt_util_match((EVP_PKEY *)a, (EVP_PKEY *)b, selection);
231
232     /*
233      * At this point, one of them is provided, the other not.  This allows
234      * us to compare types using legacy NIDs.
235      */
236     if (evp_pkey_is_legacy(a)
237         && !EVP_KEYMGMT_is_a(b->keymgmt, OBJ_nid2sn(a->type)))
238         return -1;               /* not the same key type */
239     if (evp_pkey_is_legacy(b)
240         && !EVP_KEYMGMT_is_a(a->keymgmt, OBJ_nid2sn(b->type)))
241         return -1;               /* not the same key type */
242
243     /*
244      * We've determined that they both are the same keytype, so the next
245      * step is to do a bit of cross export to ensure we have keydata for
246      * both keys in the same keymgmt.
247      */
248     keymgmt1 = a->keymgmt;
249     keydata1 = a->keydata;
250     keymgmt2 = b->keymgmt;
251     keydata2 = b->keydata;
252
253     if (keymgmt2 != NULL && keymgmt2->match != NULL) {
254         tmp_keydata =
255             evp_pkey_export_to_provider((EVP_PKEY *)a, NULL, &keymgmt2, NULL);
256         if (tmp_keydata != NULL) {
257             keymgmt1 = keymgmt2;
258             keydata1 = tmp_keydata;
259         }
260     }
261     if (tmp_keydata == NULL && keymgmt1 != NULL && keymgmt1->match != NULL) {
262         tmp_keydata =
263             evp_pkey_export_to_provider((EVP_PKEY *)b, NULL, &keymgmt1, NULL);
264         if (tmp_keydata != NULL) {
265             keymgmt2 = keymgmt1;
266             keydata2 = tmp_keydata;
267         }
268     }
269
270     /* If we still don't have matching keymgmt implementations, we give up */
271     if (keymgmt1 != keymgmt2)
272         return -2;
273
274     /* If the keymgmt implementations are NULL, the export failed */
275     if (keymgmt1 == NULL)
276         return -2;
277
278     return evp_keymgmt_match(keymgmt1, keydata1, keydata2, selection);
279 }
280
281 int EVP_PKEY_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
282 {
283     return EVP_PKEY_parameters_eq(a, b);
284 }
285
286 int EVP_PKEY_parameters_eq(const EVP_PKEY *a, const EVP_PKEY *b)
287 {
288     /*
289      * TODO: clean up legacy stuff from this function when legacy support
290      * is gone.
291      */
292
293     if (a->keymgmt != NULL || b->keymgmt != NULL)
294         return evp_pkey_cmp_any(a, b, SELECT_PARAMETERS);
295
296     /* All legacy keys */
297     if (a->type != b->type)
298         return -1;
299     if (a->ameth != NULL && a->ameth->param_cmp != NULL)
300         return a->ameth->param_cmp(a, b);
301     return -2;
302 }
303
304 int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
305 {
306     return EVP_PKEY_eq(a, b);
307 }
308
309 int EVP_PKEY_eq(const EVP_PKEY *a, const EVP_PKEY *b)
310 {
311     /*
312      * TODO: clean up legacy stuff from this function when legacy support
313      * is gone.
314      */
315
316     if (a->keymgmt != NULL || b->keymgmt != NULL)
317         return evp_pkey_cmp_any(a, b, (SELECT_PARAMETERS
318                                        | OSSL_KEYMGMT_SELECT_PUBLIC_KEY));
319
320     /* All legacy keys */
321     if (a->type != b->type)
322         return -1;
323
324     if (a->ameth != NULL) {
325         int ret;
326         /* Compare parameters if the algorithm has them */
327         if (a->ameth->param_cmp != NULL) {
328             ret = a->ameth->param_cmp(a, b);
329             if (ret <= 0)
330                 return ret;
331         }
332
333         if (a->ameth->pub_cmp != NULL)
334             return a->ameth->pub_cmp(a, b);
335     }
336
337     return -2;
338 }
339
340
341 static EVP_PKEY *new_raw_key_int(OSSL_LIB_CTX *libctx,
342                                  const char *strtype,
343                                  const char *propq,
344                                  int nidtype,
345                                  ENGINE *e,
346                                  const unsigned char *key,
347                                  size_t len,
348                                  int key_is_priv)
349 {
350     EVP_PKEY *pkey = NULL;
351     EVP_PKEY_CTX *ctx = NULL;
352     const EVP_PKEY_ASN1_METHOD *ameth = NULL;
353     int result = 0;
354
355 # ifndef OPENSSL_NO_ENGINE
356     /* Check if there is an Engine for this type */
357     if (e == NULL) {
358         ENGINE *tmpe = NULL;
359
360         if (strtype != NULL)
361             ameth = EVP_PKEY_asn1_find_str(&tmpe, strtype, -1);
362         else if (nidtype != EVP_PKEY_NONE)
363             ameth = EVP_PKEY_asn1_find(&tmpe, nidtype);
364
365         /* If tmpe is NULL then no engine is claiming to support this type */
366         if (tmpe == NULL)
367             ameth = NULL;
368
369         ENGINE_finish(tmpe);
370     }
371 # endif
372
373     if (e == NULL && ameth == NULL) {
374         /*
375          * No engine is claiming to support this type, so lets see if we have
376          * a provider.
377          */
378         ctx = EVP_PKEY_CTX_new_from_name(libctx,
379                                          strtype != NULL ? strtype
380                                                          : OBJ_nid2sn(nidtype),
381                                          propq);
382         if (ctx == NULL)
383             goto err;
384         /* May fail if no provider available */
385         ERR_set_mark();
386         if (EVP_PKEY_key_fromdata_init(ctx) == 1) {
387             OSSL_PARAM params[] = { OSSL_PARAM_END, OSSL_PARAM_END };
388
389             ERR_clear_last_mark();
390             params[0] = OSSL_PARAM_construct_octet_string(
391                             key_is_priv ? OSSL_PKEY_PARAM_PRIV_KEY
392                                         : OSSL_PKEY_PARAM_PUB_KEY,
393                             (void *)key, len);
394
395             if (EVP_PKEY_fromdata(ctx, &pkey, params) != 1) {
396                 ERR_raise(ERR_LIB_EVP, EVP_R_KEY_SETUP_FAILED);
397                 goto err;
398             }
399
400             EVP_PKEY_CTX_free(ctx);
401
402             return pkey;
403         }
404         ERR_pop_to_mark();
405         /* else not supported so fallback to legacy */
406     }
407
408     /* Legacy code path */
409
410     pkey = EVP_PKEY_new();
411     if (pkey == NULL) {
412         ERR_raise(ERR_LIB_EVP, ERR_R_MALLOC_FAILURE);
413         goto err;
414     }
415
416     if (!pkey_set_type(pkey, e, nidtype, strtype, -1, NULL)) {
417         /* EVPerr already called */
418         goto err;
419     }
420
421     if (!ossl_assert(pkey->ameth != NULL))
422         goto err;
423
424     if (key_is_priv) {
425         if (pkey->ameth->set_priv_key == NULL) {
426             ERR_raise(ERR_LIB_EVP, EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
427             goto err;
428         }
429
430         if (!pkey->ameth->set_priv_key(pkey, key, len)) {
431             ERR_raise(ERR_LIB_EVP, EVP_R_KEY_SETUP_FAILED);
432             goto err;
433         }
434     } else {
435         if (pkey->ameth->set_pub_key == NULL) {
436             ERR_raise(ERR_LIB_EVP, EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
437             goto err;
438         }
439
440         if (!pkey->ameth->set_pub_key(pkey, key, len)) {
441             ERR_raise(ERR_LIB_EVP, EVP_R_KEY_SETUP_FAILED);
442             goto err;
443         }
444     }
445
446     result = 1;
447  err:
448     if (!result) {
449         EVP_PKEY_free(pkey);
450         pkey = NULL;
451     }
452     EVP_PKEY_CTX_free(ctx);
453     return pkey;
454 }
455
456 EVP_PKEY *EVP_PKEY_new_raw_private_key_ex(OSSL_LIB_CTX *libctx,
457                                           const char *keytype,
458                                           const char *propq,
459                                           const unsigned char *priv, size_t len)
460 {
461     return new_raw_key_int(libctx, keytype, propq, EVP_PKEY_NONE, NULL, priv,
462                            len, 1);
463 }
464
465 EVP_PKEY *EVP_PKEY_new_raw_private_key(int type, ENGINE *e,
466                                        const unsigned char *priv,
467                                        size_t len)
468 {
469     return new_raw_key_int(NULL, NULL, NULL, type, e, priv, len, 1);
470 }
471
472 EVP_PKEY *EVP_PKEY_new_raw_public_key_ex(OSSL_LIB_CTX *libctx,
473                                          const char *keytype, const char *propq,
474                                          const unsigned char *pub, size_t len)
475 {
476     return new_raw_key_int(libctx, keytype, propq, EVP_PKEY_NONE, NULL, pub,
477                            len, 0);
478 }
479
480 EVP_PKEY *EVP_PKEY_new_raw_public_key(int type, ENGINE *e,
481                                       const unsigned char *pub,
482                                       size_t len)
483 {
484     return new_raw_key_int(NULL, NULL, NULL, type, e, pub, len, 0);
485 }
486
487 struct raw_key_details_st
488 {
489     unsigned char **key;
490     size_t *len;
491     int selection;
492 };
493
494 static OSSL_CALLBACK get_raw_key_details;
495 static int get_raw_key_details(const OSSL_PARAM params[], void *arg)
496 {
497     const OSSL_PARAM *p = NULL;
498     struct raw_key_details_st *raw_key = arg;
499
500     if (raw_key->selection == OSSL_KEYMGMT_SELECT_PRIVATE_KEY) {
501         if ((p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_PRIV_KEY))
502                 != NULL)
503             return OSSL_PARAM_get_octet_string(p, (void **)raw_key->key,
504                                                SIZE_MAX, raw_key->len);
505     } else if (raw_key->selection == OSSL_KEYMGMT_SELECT_PUBLIC_KEY) {
506         if ((p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_PUB_KEY))
507                 != NULL)
508             return OSSL_PARAM_get_octet_string(p, (void **)raw_key->key,
509                                                SIZE_MAX, raw_key->len);
510     }
511
512     return 0;
513 }
514
515 int EVP_PKEY_get_raw_private_key(const EVP_PKEY *pkey, unsigned char *priv,
516                                  size_t *len)
517 {
518     if (pkey->keymgmt != NULL) {
519         struct raw_key_details_st raw_key;
520
521         raw_key.key = priv == NULL ? NULL : &priv;
522         raw_key.len = len;
523         raw_key.selection = OSSL_KEYMGMT_SELECT_PRIVATE_KEY;
524
525         return evp_keymgmt_util_export(pkey, OSSL_KEYMGMT_SELECT_PRIVATE_KEY,
526                                        get_raw_key_details, &raw_key);
527     }
528
529     if (pkey->ameth == NULL) {
530         ERR_raise(ERR_LIB_EVP, EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
531         return 0;
532     }
533
534     if (pkey->ameth->get_priv_key == NULL) {
535         ERR_raise(ERR_LIB_EVP, EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
536         return 0;
537     }
538
539     if (!pkey->ameth->get_priv_key(pkey, priv, len)) {
540         ERR_raise(ERR_LIB_EVP, EVP_R_GET_RAW_KEY_FAILED);
541         return 0;
542     }
543
544     return 1;
545 }
546
547 int EVP_PKEY_get_raw_public_key(const EVP_PKEY *pkey, unsigned char *pub,
548                                 size_t *len)
549 {
550     if (pkey->keymgmt != NULL) {
551         struct raw_key_details_st raw_key;
552
553         raw_key.key = pub == NULL ? NULL : &pub;
554         raw_key.len = len;
555         raw_key.selection = OSSL_KEYMGMT_SELECT_PUBLIC_KEY;
556
557         return evp_keymgmt_util_export(pkey, OSSL_KEYMGMT_SELECT_PUBLIC_KEY,
558                                        get_raw_key_details, &raw_key);
559     }
560
561     if (pkey->ameth == NULL) {
562         ERR_raise(ERR_LIB_EVP, EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
563         return 0;
564     }
565
566      if (pkey->ameth->get_pub_key == NULL) {
567         ERR_raise(ERR_LIB_EVP, EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
568         return 0;
569     }
570
571     if (!pkey->ameth->get_pub_key(pkey, pub, len)) {
572         ERR_raise(ERR_LIB_EVP, EVP_R_GET_RAW_KEY_FAILED);
573         return 0;
574     }
575
576     return 1;
577 }
578
579 static EVP_PKEY *new_cmac_key_int(const unsigned char *priv, size_t len,
580                                   const char *cipher_name,
581                                   const EVP_CIPHER *cipher,
582                                   OSSL_LIB_CTX *libctx,
583                                   const char *propq, ENGINE *e)
584 {
585 # ifndef OPENSSL_NO_CMAC
586 #  ifndef OPENSSL_NO_ENGINE
587     const char *engine_id = e != NULL ? ENGINE_get_id(e) : NULL;
588 #  endif
589     OSSL_PARAM params[5], *p = params;
590     EVP_PKEY *pkey = NULL;
591     EVP_PKEY_CTX *ctx;
592
593     if (cipher != NULL)
594         cipher_name = EVP_CIPHER_name(cipher);
595
596     if (cipher_name == NULL) {
597         ERR_raise(ERR_LIB_EVP, EVP_R_KEY_SETUP_FAILED);
598         return NULL;
599     }
600
601     ctx = EVP_PKEY_CTX_new_from_name(libctx, "CMAC", propq);
602     if (ctx == NULL)
603         goto err;
604
605     if (!EVP_PKEY_key_fromdata_init(ctx)) {
606         ERR_raise(ERR_LIB_EVP, EVP_R_KEY_SETUP_FAILED);
607         goto err;
608     }
609
610     *p++ = OSSL_PARAM_construct_octet_string(OSSL_PKEY_PARAM_PRIV_KEY,
611                                             (void *)priv, len);
612     *p++ = OSSL_PARAM_construct_utf8_string(OSSL_PKEY_PARAM_CIPHER,
613                                             (char *)cipher_name, 0);
614     if (propq != NULL)
615         *p++ = OSSL_PARAM_construct_utf8_string(OSSL_PKEY_PARAM_PROPERTIES,
616                                                 (char *)propq, 0);
617 #  ifndef OPENSSL_NO_ENGINE
618     if (engine_id != NULL)
619         *p++ = OSSL_PARAM_construct_utf8_string(OSSL_PKEY_PARAM_ENGINE,
620                                                 (char *)engine_id, 0);
621 #  endif
622     *p = OSSL_PARAM_construct_end();
623
624     if (!EVP_PKEY_fromdata(ctx, &pkey, params)) {
625         ERR_raise(ERR_LIB_EVP, EVP_R_KEY_SETUP_FAILED);
626         goto err;
627     }
628
629  err:
630     EVP_PKEY_CTX_free(ctx);
631
632     return pkey;
633 # else
634     ERR_raise(ERR_LIB_EVP, EVP_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE);
635     return NULL;
636 # endif
637 }
638
639 EVP_PKEY *EVP_PKEY_new_CMAC_key(ENGINE *e, const unsigned char *priv,
640                                 size_t len, const EVP_CIPHER *cipher)
641 {
642     return new_cmac_key_int(priv, len, NULL, cipher, NULL, NULL, e);
643 }
644
645 int EVP_PKEY_set_type(EVP_PKEY *pkey, int type)
646 {
647     return pkey_set_type(pkey, NULL, type, NULL, -1, NULL);
648 }
649
650 int EVP_PKEY_set_type_str(EVP_PKEY *pkey, const char *str, int len)
651 {
652     return pkey_set_type(pkey, NULL, EVP_PKEY_NONE, str, len, NULL);
653 }
654
655 #ifndef OPENSSL_NO_DEPRECATED_3_0
656 int EVP_PKEY_set_alias_type(EVP_PKEY *pkey, int type)
657 {
658     if (!evp_pkey_is_legacy(pkey)) {
659         const char *name = OBJ_nid2sn(type);
660
661         if (name != NULL && EVP_PKEY_is_a(pkey, name))
662             return 1;
663
664         ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_OPERATION);
665         return 0;
666     }
667
668     if (pkey->type == type) {
669         return 1; /* it already is that type */
670     }
671
672     /*
673      * The application is requesting to alias this to a different pkey type,
674      * but not one that resolves to the base type.
675      */
676     if (EVP_PKEY_type(type) != EVP_PKEY_base_id(pkey)) {
677         ERR_raise(ERR_LIB_EVP, EVP_R_UNSUPPORTED_ALGORITHM);
678         return 0;
679     }
680
681     pkey->type = type;
682     return 1;
683 }
684 #endif
685
686 # ifndef OPENSSL_NO_ENGINE
687 int EVP_PKEY_set1_engine(EVP_PKEY *pkey, ENGINE *e)
688 {
689     if (e != NULL) {
690         if (!ENGINE_init(e)) {
691             ERR_raise(ERR_LIB_EVP, ERR_R_ENGINE_LIB);
692             return 0;
693         }
694         if (ENGINE_get_pkey_meth(e, pkey->type) == NULL) {
695             ENGINE_finish(e);
696             ERR_raise(ERR_LIB_EVP, EVP_R_UNSUPPORTED_ALGORITHM);
697             return 0;
698         }
699     }
700     ENGINE_finish(pkey->pmeth_engine);
701     pkey->pmeth_engine = e;
702     return 1;
703 }
704
705 ENGINE *EVP_PKEY_get0_engine(const EVP_PKEY *pkey)
706 {
707     return pkey->engine;
708 }
709 # endif
710 int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key)
711 {
712     int alias = type;
713
714 #ifndef OPENSSL_NO_EC
715     if ((key != NULL) && (EVP_PKEY_type(type) == EVP_PKEY_EC)) {
716         const EC_GROUP *group = EC_KEY_get0_group(key);
717
718         if (group != NULL && EC_GROUP_get_curve_name(group) == NID_sm2)
719             alias = EVP_PKEY_SM2;
720     }
721 #endif
722
723     if (pkey == NULL || !EVP_PKEY_set_type(pkey, type))
724         return 0;
725     if (!EVP_PKEY_set_alias_type(pkey, alias))
726         return 0;
727     pkey->pkey.ptr = key;
728     return (key != NULL);
729 }
730
731 void *EVP_PKEY_get0(const EVP_PKEY *pkey)
732 {
733     if (pkey == NULL)
734         return NULL;
735     if (!evp_pkey_downgrade((EVP_PKEY *)pkey)) {
736         ERR_raise(ERR_LIB_EVP, EVP_R_INACCESSIBLE_KEY);
737         return NULL;
738     }
739     return pkey->pkey.ptr;
740 }
741
742 const unsigned char *EVP_PKEY_get0_hmac(const EVP_PKEY *pkey, size_t *len)
743 {
744     ASN1_OCTET_STRING *os = NULL;
745     if (pkey->type != EVP_PKEY_HMAC) {
746         ERR_raise(ERR_LIB_EVP, EVP_R_EXPECTING_AN_HMAC_KEY);
747         return NULL;
748     }
749     os = EVP_PKEY_get0(pkey);
750     *len = os->length;
751     return os->data;
752 }
753
754 # ifndef OPENSSL_NO_POLY1305
755 const unsigned char *EVP_PKEY_get0_poly1305(const EVP_PKEY *pkey, size_t *len)
756 {
757     ASN1_OCTET_STRING *os = NULL;
758     if (pkey->type != EVP_PKEY_POLY1305) {
759         ERR_raise(ERR_LIB_EVP, EVP_R_EXPECTING_A_POLY1305_KEY);
760         return NULL;
761     }
762     os = EVP_PKEY_get0(pkey);
763     *len = os->length;
764     return os->data;
765 }
766 # endif
767
768 # ifndef OPENSSL_NO_SIPHASH
769 const unsigned char *EVP_PKEY_get0_siphash(const EVP_PKEY *pkey, size_t *len)
770 {
771     ASN1_OCTET_STRING *os = NULL;
772
773     if (pkey->type != EVP_PKEY_SIPHASH) {
774         ERR_raise(ERR_LIB_EVP, EVP_R_EXPECTING_A_SIPHASH_KEY);
775         return NULL;
776     }
777     os = EVP_PKEY_get0(pkey);
778     *len = os->length;
779     return os->data;
780 }
781 # endif
782
783 # ifndef OPENSSL_NO_DSA
784 DSA *EVP_PKEY_get0_DSA(const EVP_PKEY *pkey)
785 {
786     if (!evp_pkey_downgrade((EVP_PKEY *)pkey)) {
787         ERR_raise(ERR_LIB_EVP, EVP_R_INACCESSIBLE_KEY);
788         return NULL;
789     }
790     if (pkey->type != EVP_PKEY_DSA) {
791         ERR_raise(ERR_LIB_EVP, EVP_R_EXPECTING_A_DSA_KEY);
792         return NULL;
793     }
794     return pkey->pkey.dsa;
795 }
796
797 int EVP_PKEY_set1_DSA(EVP_PKEY *pkey, DSA *key)
798 {
799     int ret = EVP_PKEY_assign_DSA(pkey, key);
800     if (ret)
801         DSA_up_ref(key);
802     return ret;
803 }
804 DSA *EVP_PKEY_get1_DSA(EVP_PKEY *pkey)
805 {
806     DSA *ret = EVP_PKEY_get0_DSA(pkey);
807     if (ret != NULL)
808         DSA_up_ref(ret);
809     return ret;
810 }
811 # endif /*  OPENSSL_NO_DSA */
812 #endif /* FIPS_MODULE */
813
814 #ifndef FIPS_MODULE
815 # ifndef OPENSSL_NO_EC
816 int EVP_PKEY_set1_EC_KEY(EVP_PKEY *pkey, EC_KEY *key)
817 {
818     int ret = EVP_PKEY_assign_EC_KEY(pkey, key);
819     if (ret)
820         EC_KEY_up_ref(key);
821     return ret;
822 }
823
824 EC_KEY *EVP_PKEY_get0_EC_KEY(const EVP_PKEY *pkey)
825 {
826     if (!evp_pkey_downgrade((EVP_PKEY *)pkey)) {
827         ERR_raise(ERR_LIB_EVP, EVP_R_INACCESSIBLE_KEY);
828         return NULL;
829     }
830     if (EVP_PKEY_base_id(pkey) != EVP_PKEY_EC) {
831         ERR_raise(ERR_LIB_EVP, EVP_R_EXPECTING_A_EC_KEY);
832         return NULL;
833     }
834     return pkey->pkey.ec;
835 }
836
837 EC_KEY *EVP_PKEY_get1_EC_KEY(EVP_PKEY *pkey)
838 {
839     EC_KEY *ret = EVP_PKEY_get0_EC_KEY(pkey);
840     if (ret != NULL)
841         EC_KEY_up_ref(ret);
842     return ret;
843 }
844
845 static ECX_KEY *evp_pkey_get0_ECX_KEY(const EVP_PKEY *pkey, int type)
846 {
847     if (!evp_pkey_downgrade((EVP_PKEY *)pkey)) {
848         ERR_raise(ERR_LIB_EVP, EVP_R_INACCESSIBLE_KEY);
849         return NULL;
850     }
851     if (EVP_PKEY_base_id(pkey) != type) {
852         ERR_raise(ERR_LIB_EVP, EVP_R_EXPECTING_A_ECX_KEY);
853         return NULL;
854     }
855     return pkey->pkey.ecx;
856 }
857
858 static ECX_KEY *evp_pkey_get1_ECX_KEY(EVP_PKEY *pkey, int type)
859 {
860     ECX_KEY *ret = evp_pkey_get0_ECX_KEY(pkey, type);
861     if (ret != NULL)
862         ecx_key_up_ref(ret);
863     return ret;
864 }
865
866 #  define IMPLEMENT_ECX_VARIANT(NAME)                                   \
867     ECX_KEY *evp_pkey_get1_##NAME(EVP_PKEY *pkey)                       \
868     {                                                                   \
869         return evp_pkey_get1_ECX_KEY(pkey, EVP_PKEY_##NAME);            \
870     }
871 IMPLEMENT_ECX_VARIANT(X25519)
872 IMPLEMENT_ECX_VARIANT(X448)
873 IMPLEMENT_ECX_VARIANT(ED25519)
874 IMPLEMENT_ECX_VARIANT(ED448)
875
876 # endif
877
878 # if !defined(OPENSSL_NO_DH) && !defined(OPENSSL_NO_DEPRECATED_3_0)
879
880 int EVP_PKEY_set1_DH(EVP_PKEY *pkey, DH *key)
881 {
882     int type = DH_get0_q(key) == NULL ? EVP_PKEY_DH : EVP_PKEY_DHX;
883     int ret = EVP_PKEY_assign(pkey, type, key);
884
885     if (ret)
886         DH_up_ref(key);
887     return ret;
888 }
889
890 DH *EVP_PKEY_get0_DH(const EVP_PKEY *pkey)
891 {
892     if (!evp_pkey_downgrade((EVP_PKEY *)pkey)) {
893         ERR_raise(ERR_LIB_EVP, EVP_R_INACCESSIBLE_KEY);
894         return NULL;
895     }
896     if (pkey->type != EVP_PKEY_DH && pkey->type != EVP_PKEY_DHX) {
897         ERR_raise(ERR_LIB_EVP, EVP_R_EXPECTING_A_DH_KEY);
898         return NULL;
899     }
900     return pkey->pkey.dh;
901 }
902
903 DH *EVP_PKEY_get1_DH(EVP_PKEY *pkey)
904 {
905     DH *ret = EVP_PKEY_get0_DH(pkey);
906     if (ret != NULL)
907         DH_up_ref(ret);
908     return ret;
909 }
910 # endif
911
912 int EVP_PKEY_type(int type)
913 {
914     int ret;
915     const EVP_PKEY_ASN1_METHOD *ameth;
916     ENGINE *e;
917     ameth = EVP_PKEY_asn1_find(&e, type);
918     if (ameth)
919         ret = ameth->pkey_id;
920     else
921         ret = NID_undef;
922 # ifndef OPENSSL_NO_ENGINE
923     ENGINE_finish(e);
924 # endif
925     return ret;
926 }
927
928 int EVP_PKEY_id(const EVP_PKEY *pkey)
929 {
930     return pkey->type;
931 }
932
933 int EVP_PKEY_base_id(const EVP_PKEY *pkey)
934 {
935     return EVP_PKEY_type(pkey->type);
936 }
937
938 #ifndef FIPS_MODULE
939 int evp_pkey_name2type(const char *name)
940 {
941     /*
942      * These hard coded cases are pure hackery to get around the fact
943      * that names in crypto/objects/objects.txt are a mess.  There is
944      * no "EC", and "RSA" leads to the NID for 2.5.8.1.1, an OID that's
945      * fallen out in favor of { pkcs-1 1 }, i.e. 1.2.840.113549.1.1.1,
946      * the NID of which is used for EVP_PKEY_RSA.  Strangely enough,
947      * "DSA" is accurate...  but still, better be safe and hard-code
948      * names that we know.
949      * On a similar topic, EVP_PKEY_type(EVP_PKEY_SM2) will result in
950      * EVP_PKEY_EC, because of aliasing.
951      * TODO Clean this away along with all other #legacy support.
952      */
953     int type = NID_undef;
954
955     if (strcasecmp(name, "RSA") == 0)
956         type = EVP_PKEY_RSA;
957     else if (strcasecmp(name, "RSA-PSS") == 0)
958         type = EVP_PKEY_RSA_PSS;
959     else if (strcasecmp(name, "EC") == 0)
960         type = EVP_PKEY_EC;
961     else if (strcasecmp(name, "ED25519") == 0)
962         type = EVP_PKEY_ED25519;
963     else if (strcasecmp(name, "ED448") == 0)
964         type = EVP_PKEY_ED448;
965     else if (strcasecmp(name, "X25519") == 0)
966         type = EVP_PKEY_X25519;
967     else if (strcasecmp(name, "X448") == 0)
968         type = EVP_PKEY_X448;
969     else if (strcasecmp(name, "SM2") == 0)
970         type = EVP_PKEY_SM2;
971     else if (strcasecmp(name, "DH") == 0)
972         type = EVP_PKEY_DH;
973     else if (strcasecmp(name, "X9.42 DH") == 0)
974         type = EVP_PKEY_DHX;
975     else if (strcasecmp(name, "DSA") == 0)
976         type = EVP_PKEY_DSA;
977
978     if (type == NID_undef)
979         type = EVP_PKEY_type(OBJ_sn2nid(name));
980     if (type == NID_undef)
981         type = EVP_PKEY_type(OBJ_ln2nid(name));
982
983     return type;
984 }
985 #endif
986
987 int EVP_PKEY_is_a(const EVP_PKEY *pkey, const char *name)
988 {
989 #ifndef FIPS_MODULE
990     if (pkey->keymgmt == NULL) {
991         int type = evp_pkey_name2type(name);
992
993         return pkey->type == type;
994     }
995 #endif
996     return EVP_KEYMGMT_is_a(pkey->keymgmt, name);
997 }
998
999 void EVP_PKEY_typenames_do_all(const EVP_PKEY *pkey,
1000                                void (*fn)(const char *name, void *data),
1001                                void *data)
1002 {
1003     if (!evp_pkey_is_typed(pkey))
1004         return;
1005
1006     if (!evp_pkey_is_provided(pkey)) {
1007         const char *name = OBJ_nid2sn(EVP_PKEY_id(pkey));
1008
1009         fn(name, data);
1010         return;
1011     }
1012     EVP_KEYMGMT_names_do_all(pkey->keymgmt, fn, data);
1013 }
1014
1015 int EVP_PKEY_can_sign(const EVP_PKEY *pkey)
1016 {
1017     if (pkey->keymgmt == NULL) {
1018         switch (EVP_PKEY_base_id(pkey)) {
1019         case EVP_PKEY_RSA:
1020             return 1;
1021 #ifndef OPENSSL_NO_DSA
1022         case EVP_PKEY_DSA:
1023             return 1;
1024 #endif
1025 #ifndef OPENSSL_NO_EC
1026         case EVP_PKEY_ED25519:
1027         case EVP_PKEY_ED448:
1028             return 1;
1029         case EVP_PKEY_EC:        /* Including SM2 */
1030             return EC_KEY_can_sign(pkey->pkey.ec);
1031 #endif
1032         default:
1033             break;
1034         }
1035     } else {
1036         const OSSL_PROVIDER *prov = EVP_KEYMGMT_provider(pkey->keymgmt);
1037         OSSL_LIB_CTX *libctx = ossl_provider_libctx(prov);
1038         const char *supported_sig =
1039             pkey->keymgmt->query_operation_name != NULL
1040             ? pkey->keymgmt->query_operation_name(OSSL_OP_SIGNATURE)
1041             : evp_first_name(prov, pkey->keymgmt->name_id);
1042         EVP_SIGNATURE *signature = NULL;
1043
1044         signature = EVP_SIGNATURE_fetch(libctx, supported_sig, NULL);
1045         if (signature != NULL) {
1046             EVP_SIGNATURE_free(signature);
1047             return 1;
1048         }
1049     }
1050     return 0;
1051 }
1052
1053 static int print_reset_indent(BIO **out, int pop_f_prefix, long saved_indent)
1054 {
1055     BIO_set_indent(*out, saved_indent);
1056     if (pop_f_prefix) {
1057         BIO *next = BIO_pop(*out);
1058
1059         BIO_free(*out);
1060         *out = next;
1061     }
1062     return 1;
1063 }
1064
1065 static int print_set_indent(BIO **out, int *pop_f_prefix, long *saved_indent,
1066                             long indent)
1067 {
1068     *pop_f_prefix = 0;
1069     *saved_indent = 0;
1070     if (indent > 0) {
1071         long i = BIO_get_indent(*out);
1072
1073         *saved_indent =  (i < 0 ? 0 : i);
1074         if (BIO_set_indent(*out, indent) <= 0) {
1075             if ((*out = BIO_push(BIO_new(BIO_f_prefix()), *out)) == NULL)
1076                 return 0;
1077             *pop_f_prefix = 1;
1078         }
1079         if (BIO_set_indent(*out, indent) <= 0) {
1080             print_reset_indent(out, *pop_f_prefix, *saved_indent);
1081             return 0;
1082         }
1083     }
1084     return 1;
1085 }
1086
1087 static int unsup_alg(BIO *out, const EVP_PKEY *pkey, int indent,
1088                      const char *kstr)
1089 {
1090     return BIO_indent(out, indent, 128)
1091         && BIO_printf(out, "%s algorithm \"%s\" unsupported\n",
1092                       kstr, OBJ_nid2ln(pkey->type)) > 0;
1093 }
1094
1095 static int print_pkey(const EVP_PKEY *pkey, BIO *out, int indent,
1096                       int selection /* For provided encoding */,
1097                       const char *propquery /* For provided encoding */,
1098                       int (*legacy_print)(BIO *out, const EVP_PKEY *pkey,
1099                                           int indent, ASN1_PCTX *pctx),
1100                       ASN1_PCTX *legacy_pctx /* For legacy print */)
1101 {
1102     int pop_f_prefix;
1103     long saved_indent;
1104     OSSL_ENCODER_CTX *ctx = NULL;
1105     int ret = -2;                /* default to unsupported */
1106
1107     if (!print_set_indent(&out, &pop_f_prefix, &saved_indent, indent))
1108         return 0;
1109
1110     ctx = OSSL_ENCODER_CTX_new_by_EVP_PKEY(pkey, selection, "TEXT", NULL,
1111                                            propquery);
1112     if (OSSL_ENCODER_CTX_get_num_encoders(ctx) != 0)
1113         ret = OSSL_ENCODER_to_bio(ctx, out);
1114     OSSL_ENCODER_CTX_free(ctx);
1115
1116     if (ret != -2)
1117         goto end;
1118
1119     /* legacy fallback */
1120     if (legacy_print != NULL)
1121         ret = legacy_print(out, pkey, 0, legacy_pctx);
1122     else
1123         ret = unsup_alg(out, pkey, 0, "Public Key");
1124
1125  end:
1126     print_reset_indent(&out, pop_f_prefix, saved_indent);
1127     return ret;
1128 }
1129
1130 int EVP_PKEY_print_public(BIO *out, const EVP_PKEY *pkey,
1131                           int indent, ASN1_PCTX *pctx)
1132 {
1133     return print_pkey(pkey, out, indent, EVP_PKEY_PUBLIC_KEY, NULL,
1134                       (pkey->ameth != NULL ? pkey->ameth->pub_print : NULL),
1135                       pctx);
1136 }
1137
1138 int EVP_PKEY_print_private(BIO *out, const EVP_PKEY *pkey,
1139                            int indent, ASN1_PCTX *pctx)
1140 {
1141     return print_pkey(pkey, out, indent, EVP_PKEY_KEYPAIR, NULL,
1142                       (pkey->ameth != NULL ? pkey->ameth->priv_print : NULL),
1143                       pctx);
1144 }
1145
1146 int EVP_PKEY_print_params(BIO *out, const EVP_PKEY *pkey,
1147                           int indent, ASN1_PCTX *pctx)
1148 {
1149     return print_pkey(pkey, out, indent, EVP_PKEY_KEY_PARAMETERS, NULL,
1150                       (pkey->ameth != NULL ? pkey->ameth->param_print : NULL),
1151                       pctx);
1152 }
1153
1154 static int legacy_asn1_ctrl_to_param(EVP_PKEY *pkey, int op,
1155                                      int arg1, void *arg2)
1156 {
1157     if (pkey->keymgmt == NULL)
1158         return 0;
1159     switch (op) {
1160     case ASN1_PKEY_CTRL_DEFAULT_MD_NID:
1161         {
1162             char mdname[80] = "";
1163             int rv = EVP_PKEY_get_default_digest_name(pkey, mdname,
1164                                                       sizeof(mdname));
1165
1166             if (rv > 0) {
1167                 int nid;
1168
1169                 nid = OBJ_sn2nid(mdname);
1170                 if (nid == NID_undef)
1171                     nid = OBJ_ln2nid(mdname);
1172                 *(int *)arg2 = nid;
1173             }
1174             return rv;
1175         }
1176     default:
1177         return -2;
1178     }
1179 }
1180
1181 static int evp_pkey_asn1_ctrl(EVP_PKEY *pkey, int op, int arg1, void *arg2)
1182 {
1183     if (pkey->ameth == NULL)
1184         return legacy_asn1_ctrl_to_param(pkey, op, arg1, arg2);
1185     if (pkey->ameth->pkey_ctrl == NULL)
1186         return -2;
1187     return pkey->ameth->pkey_ctrl(pkey, op, arg1, arg2);
1188 }
1189
1190 int EVP_PKEY_get_default_digest_nid(EVP_PKEY *pkey, int *pnid)
1191 {
1192     return evp_pkey_asn1_ctrl(pkey, ASN1_PKEY_CTRL_DEFAULT_MD_NID, 0, pnid);
1193 }
1194
1195 int EVP_PKEY_get_default_digest_name(EVP_PKEY *pkey,
1196                                      char *mdname, size_t mdname_sz)
1197 {
1198     if (pkey->ameth == NULL)
1199         return evp_keymgmt_util_get_deflt_digest_name(pkey->keymgmt,
1200                                                       pkey->keydata,
1201                                                       mdname, mdname_sz);
1202
1203     {
1204         int nid = NID_undef;
1205         int rv = EVP_PKEY_get_default_digest_nid(pkey, &nid);
1206         const char *name = rv > 0 ? OBJ_nid2sn(nid) : NULL;
1207
1208         if (rv > 0)
1209             OPENSSL_strlcpy(mdname, name, mdname_sz);
1210         return rv;
1211     }
1212 }
1213
1214 int EVP_PKEY_get_group_name(const EVP_PKEY *pkey, char *gname, size_t gname_sz,
1215                             size_t *gname_len)
1216 {
1217     if (evp_pkey_is_legacy(pkey)) {
1218         const char *name = NULL;
1219
1220         switch (EVP_PKEY_base_id(pkey)) {
1221 #ifndef OPENSSL_NO_EC
1222         case EVP_PKEY_EC:
1223             {
1224                 EC_KEY *ec = EVP_PKEY_get0_EC_KEY(pkey);
1225                 int nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(ec));
1226
1227                 if (nid != NID_undef)
1228                     name = ec_curve_nid2name(nid);
1229             }
1230             break;
1231 #endif
1232 #ifndef OPENSSL_NO_DH
1233         case EVP_PKEY_DH:
1234             {
1235                 DH *dh = EVP_PKEY_get0_DH(pkey);
1236                 int uid = DH_get_nid(dh);
1237
1238                 if (uid != NID_undef) {
1239                     const DH_NAMED_GROUP *dh_group =
1240                         ossl_ffc_uid_to_dh_named_group(uid);
1241
1242                     name = ossl_ffc_named_group_get_name(dh_group);
1243                 }
1244             }
1245             break;
1246 #endif
1247         default:
1248             break;
1249         }
1250
1251         if (gname_len != NULL)
1252             *gname_len = (name == NULL ? 0 : strlen(name));
1253         if (name != NULL) {
1254             if (gname != NULL)
1255                 OPENSSL_strlcpy(gname, name, gname_sz);
1256             return 1;
1257         }
1258     } else if (evp_pkey_is_provided(pkey)) {
1259         if (EVP_PKEY_get_utf8_string_param(pkey, OSSL_PKEY_PARAM_GROUP_NAME,
1260                                            gname, gname_sz, gname_len))
1261             return 1;
1262     } else {
1263         ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_KEY);
1264         return 0;
1265     }
1266
1267     ERR_raise(ERR_LIB_EVP, EVP_R_UNSUPPORTED_KEY_TYPE);
1268     return 0;
1269 }
1270
1271 int EVP_PKEY_supports_digest_nid(EVP_PKEY *pkey, int nid)
1272 {
1273     int rv, default_nid;
1274
1275     rv = evp_pkey_asn1_ctrl(pkey, ASN1_PKEY_CTRL_SUPPORTS_MD_NID, nid, NULL);
1276     if (rv == -2) {
1277         /*
1278          * If there is a mandatory default digest and this isn't it, then
1279          * the answer is 'no'.
1280          */
1281         rv = EVP_PKEY_get_default_digest_nid(pkey, &default_nid);
1282         if (rv == 2)
1283             return (nid == default_nid);
1284         /* zero is an error from EVP_PKEY_get_default_digest_nid() */
1285         if (rv == 0)
1286             return -1;
1287     }
1288     return rv;
1289 }
1290
1291 int EVP_PKEY_set1_encoded_public_key(EVP_PKEY *pkey, const unsigned char *pub,
1292                                      size_t publen)
1293 {
1294     if (pkey->ameth == NULL) {
1295         OSSL_PARAM params[2] = { OSSL_PARAM_END, OSSL_PARAM_END };
1296
1297         if (pkey->keymgmt == NULL || pkey->keydata == NULL)
1298             return 0;
1299
1300         params[0] =
1301             OSSL_PARAM_construct_octet_string(OSSL_PKEY_PARAM_ENCODED_PUBLIC_KEY,
1302                                               (unsigned char *)pub, publen);
1303         return evp_keymgmt_set_params(pkey->keymgmt, pkey->keydata, params);
1304     }
1305
1306     if (publen > INT_MAX)
1307         return 0;
1308     /* Historically this function was EVP_PKEY_set1_tls_encodedpoint */
1309     if (evp_pkey_asn1_ctrl(pkey, ASN1_PKEY_CTRL_SET1_TLS_ENCPT, publen,
1310                            (void *)pub) <= 0)
1311         return 0;
1312     return 1;
1313 }
1314
1315 size_t EVP_PKEY_get1_encoded_public_key(EVP_PKEY *pkey, unsigned char **ppub)
1316 {
1317     int rv;
1318
1319     if (pkey->ameth == NULL) {
1320         OSSL_PARAM params[2] = { OSSL_PARAM_END, OSSL_PARAM_END };
1321
1322         if (pkey->keymgmt == NULL || pkey->keydata == NULL)
1323             return 0;
1324
1325         params[0] =
1326             OSSL_PARAM_construct_octet_string(OSSL_PKEY_PARAM_ENCODED_PUBLIC_KEY,
1327                                               NULL, 0);
1328         if (!evp_keymgmt_get_params(pkey->keymgmt, pkey->keydata, params))
1329             return 0;
1330
1331         *ppub = OPENSSL_malloc(params[0].return_size);
1332         if (*ppub == NULL)
1333             return 0;
1334
1335         params[0] =
1336             OSSL_PARAM_construct_octet_string(OSSL_PKEY_PARAM_ENCODED_PUBLIC_KEY,
1337                                               *ppub, params[0].return_size);
1338         if (!evp_keymgmt_get_params(pkey->keymgmt, pkey->keydata, params))
1339             return 0;
1340
1341         return params[0].return_size;
1342     }
1343
1344
1345     rv = evp_pkey_asn1_ctrl(pkey, ASN1_PKEY_CTRL_GET1_TLS_ENCPT, 0, ppub);
1346     if (rv <= 0)
1347         return 0;
1348     return rv;
1349 }
1350
1351 #endif /* FIPS_MODULE */
1352
1353 /*- All methods below can also be used in FIPS_MODULE */
1354
1355 /*
1356  * This reset function must be used very carefully, as it literally throws
1357  * away everything in an EVP_PKEY without freeing them, and may cause leaks
1358  * of memory, what have you.
1359  * The only reason we have this is to have the same code for EVP_PKEY_new()
1360  * and evp_pkey_downgrade().
1361  */
1362 static int evp_pkey_reset_unlocked(EVP_PKEY *pk)
1363 {
1364     if (pk == NULL)
1365         return 0;
1366
1367     if (pk->lock != NULL) {
1368       const size_t offset = (unsigned char *)&pk->lock - (unsigned char *)pk;
1369
1370       memset(pk, 0, offset);
1371       memset((unsigned char *)pk + offset + sizeof(pk->lock),
1372              0,
1373              sizeof(*pk) - offset - sizeof(pk->lock));
1374     }
1375     /* EVP_PKEY_new uses zalloc so no need to call memset if pk->lock is NULL */
1376
1377     pk->type = EVP_PKEY_NONE;
1378     pk->save_type = EVP_PKEY_NONE;
1379     pk->references = 1;
1380     pk->save_parameters = 1;
1381
1382     return 1;
1383 }
1384
1385 EVP_PKEY *EVP_PKEY_new(void)
1386 {
1387     EVP_PKEY *ret = OPENSSL_zalloc(sizeof(*ret));
1388
1389     if (ret == NULL) {
1390         ERR_raise(ERR_LIB_EVP, ERR_R_MALLOC_FAILURE);
1391         return NULL;
1392     }
1393
1394     if (!evp_pkey_reset_unlocked(ret))
1395         goto err;
1396
1397     ret->lock = CRYPTO_THREAD_lock_new();
1398     if (ret->lock == NULL) {
1399         EVPerr(ERR_LIB_EVP, ERR_R_MALLOC_FAILURE);
1400         goto err;
1401     }
1402
1403 #ifndef FIPS_MODULE
1404     if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_EVP_PKEY, ret, &ret->ex_data)) {
1405         ERR_raise(ERR_LIB_EVP, ERR_R_MALLOC_FAILURE);
1406         goto err;
1407     }
1408 #endif
1409     return ret;
1410
1411  err:
1412     CRYPTO_THREAD_lock_free(ret->lock);
1413     OPENSSL_free(ret);
1414     return NULL;
1415 }
1416
1417 /*
1418  * Setup a public key management method.
1419  *
1420  * For legacy keys, either |type| or |str| is expected to have the type
1421  * information.  In this case, the setup consists of finding an ASN1 method
1422  * and potentially an ENGINE, and setting those fields in |pkey|.
1423  *
1424  * For provider side keys, |keymgmt| is expected to be non-NULL.  In this
1425  * case, the setup consists of setting the |keymgmt| field in |pkey|.
1426  *
1427  * If pkey is NULL just return 1 or 0 if the key management method exists.
1428  */
1429
1430 static int pkey_set_type(EVP_PKEY *pkey, ENGINE *e, int type, const char *str,
1431                          int len, EVP_KEYMGMT *keymgmt)
1432 {
1433 #ifndef FIPS_MODULE
1434     const EVP_PKEY_ASN1_METHOD *ameth = NULL;
1435     ENGINE **eptr = (e == NULL) ? &e :  NULL;
1436 #endif
1437
1438     /*
1439      * The setups can't set both legacy and provider side methods.
1440      * It is forbidden
1441      */
1442     if (!ossl_assert(type == EVP_PKEY_NONE || keymgmt == NULL)
1443         || !ossl_assert(e == NULL || keymgmt == NULL)) {
1444         ERR_raise(ERR_LIB_EVP, ERR_R_INTERNAL_ERROR);
1445         return 0;
1446     }
1447
1448     if (pkey != NULL) {
1449         int free_it = 0;
1450
1451 #ifndef FIPS_MODULE
1452         free_it = free_it || pkey->pkey.ptr != NULL;
1453 #endif
1454         free_it = free_it || pkey->keydata != NULL;
1455         if (free_it)
1456             evp_pkey_free_it(pkey);
1457 #ifndef FIPS_MODULE
1458         /*
1459          * If key type matches and a method exists then this lookup has
1460          * succeeded once so just indicate success.
1461          */
1462         if (pkey->type != EVP_PKEY_NONE
1463             && type == pkey->save_type
1464             && pkey->ameth != NULL)
1465             return 1;
1466 # ifndef OPENSSL_NO_ENGINE
1467         /* If we have ENGINEs release them */
1468         ENGINE_finish(pkey->engine);
1469         pkey->engine = NULL;
1470         ENGINE_finish(pkey->pmeth_engine);
1471         pkey->pmeth_engine = NULL;
1472 # endif
1473 #endif
1474     }
1475 #ifndef FIPS_MODULE
1476     if (str != NULL)
1477         ameth = EVP_PKEY_asn1_find_str(eptr, str, len);
1478     else if (type != EVP_PKEY_NONE)
1479         ameth = EVP_PKEY_asn1_find(eptr, type);
1480 # ifndef OPENSSL_NO_ENGINE
1481     if (pkey == NULL && eptr != NULL)
1482         ENGINE_finish(e);
1483 # endif
1484 #endif
1485
1486
1487     {
1488         int check = 1;
1489
1490 #ifndef FIPS_MODULE
1491         check = check && ameth == NULL;
1492 #endif
1493         check = check && keymgmt == NULL;
1494         if (check) {
1495             ERR_raise(ERR_LIB_EVP, EVP_R_UNSUPPORTED_ALGORITHM);
1496             return 0;
1497         }
1498     }
1499     if (pkey != NULL) {
1500         if (keymgmt != NULL && !EVP_KEYMGMT_up_ref(keymgmt)) {
1501             ERR_raise(ERR_LIB_EVP, ERR_R_INTERNAL_ERROR);
1502             return 0;
1503         }
1504
1505         pkey->keymgmt = keymgmt;
1506
1507         pkey->save_type = type;
1508         pkey->type = type;
1509
1510 #ifndef FIPS_MODULE
1511         /*
1512          * If the internal "origin" key is provider side, don't save |ameth|.
1513          * The main reason is that |ameth| is one factor to detect that the
1514          * internal "origin" key is a legacy one.
1515          */
1516         if (keymgmt == NULL)
1517             pkey->ameth = ameth;
1518         pkey->engine = e;
1519
1520         /*
1521          * The EVP_PKEY_ASN1_METHOD |pkey_id| retains its legacy key purpose
1522          * for any key type that has a legacy implementation, regardless of
1523          * if the internal key is a legacy or a provider side one.  When
1524          * there is no legacy implementation for the key, the type becomes
1525          * EVP_PKEY_KEYMGMT, which indicates that one should be cautious
1526          * with functions that expect legacy internal keys.
1527          */
1528         if (ameth != NULL)
1529             pkey->type = ameth->pkey_id;
1530         else
1531             pkey->type = EVP_PKEY_KEYMGMT;
1532 #endif
1533     }
1534     return 1;
1535 }
1536
1537 #ifndef FIPS_MODULE
1538 static void find_ameth(const char *name, void *data)
1539 {
1540     const char **str = data;
1541
1542     /*
1543      * The error messages from pkey_set_type() are uninteresting here,
1544      * and misleading.
1545      */
1546     ERR_set_mark();
1547
1548     if (pkey_set_type(NULL, NULL, EVP_PKEY_NONE, name, strlen(name),
1549                       NULL)) {
1550         if (str[0] == NULL)
1551             str[0] = name;
1552         else if (str[1] == NULL)
1553             str[1] = name;
1554     }
1555
1556     ERR_pop_to_mark();
1557 }
1558 #endif
1559
1560 int EVP_PKEY_set_type_by_keymgmt(EVP_PKEY *pkey, EVP_KEYMGMT *keymgmt)
1561 {
1562 #ifndef FIPS_MODULE
1563 # define EVP_PKEY_TYPE_STR str[0]
1564 # define EVP_PKEY_TYPE_STRLEN (str[0] == NULL ? -1 : (int)strlen(str[0]))
1565     /*
1566      * Find at most two strings that have an associated EVP_PKEY_ASN1_METHOD
1567      * Ideally, only one should be found.  If two (or more) are found, the
1568      * match is ambiguous.  This should never happen, but...
1569      */
1570     const char *str[2] = { NULL, NULL };
1571
1572     EVP_KEYMGMT_names_do_all(keymgmt, find_ameth, &str);
1573     if (str[1] != NULL) {
1574         ERR_raise(ERR_LIB_EVP, ERR_R_INTERNAL_ERROR);
1575         return 0;
1576     }
1577 #else
1578 # define EVP_PKEY_TYPE_STR NULL
1579 # define EVP_PKEY_TYPE_STRLEN -1
1580 #endif
1581     return pkey_set_type(pkey, NULL, EVP_PKEY_NONE,
1582                          EVP_PKEY_TYPE_STR, EVP_PKEY_TYPE_STRLEN,
1583                          keymgmt);
1584
1585 #undef EVP_PKEY_TYPE_STR
1586 #undef EVP_PKEY_TYPE_STRLEN
1587 }
1588
1589 int EVP_PKEY_up_ref(EVP_PKEY *pkey)
1590 {
1591     int i;
1592
1593     if (CRYPTO_UP_REF(&pkey->references, &i, pkey->lock) <= 0)
1594         return 0;
1595
1596     REF_PRINT_COUNT("EVP_PKEY", pkey);
1597     REF_ASSERT_ISNT(i < 2);
1598     return ((i > 1) ? 1 : 0);
1599 }
1600
1601 #ifndef FIPS_MODULE
1602 void evp_pkey_free_legacy(EVP_PKEY *x)
1603 {
1604     if (x->ameth != NULL) {
1605         if (x->ameth->pkey_free != NULL)
1606             x->ameth->pkey_free(x);
1607         x->pkey.ptr = NULL;
1608     }
1609 # ifndef OPENSSL_NO_ENGINE
1610     ENGINE_finish(x->engine);
1611     x->engine = NULL;
1612     ENGINE_finish(x->pmeth_engine);
1613     x->pmeth_engine = NULL;
1614 # endif
1615 }
1616 #endif  /* FIPS_MODULE */
1617
1618 static void evp_pkey_free_it(EVP_PKEY *x)
1619 {
1620     /* internal function; x is never NULL */
1621
1622     evp_keymgmt_util_clear_operation_cache(x);
1623 #ifndef FIPS_MODULE
1624     evp_pkey_free_legacy(x);
1625 #endif
1626
1627     if (x->keymgmt != NULL) {
1628         evp_keymgmt_freedata(x->keymgmt, x->keydata);
1629         EVP_KEYMGMT_free(x->keymgmt);
1630         x->keymgmt = NULL;
1631         x->keydata = NULL;
1632     }
1633     x->type = EVP_PKEY_NONE;
1634 }
1635
1636 void EVP_PKEY_free(EVP_PKEY *x)
1637 {
1638     int i;
1639
1640     if (x == NULL)
1641         return;
1642
1643     CRYPTO_DOWN_REF(&x->references, &i, x->lock);
1644     REF_PRINT_COUNT("EVP_PKEY", x);
1645     if (i > 0)
1646         return;
1647     REF_ASSERT_ISNT(i < 0);
1648     evp_pkey_free_it(x);
1649 #ifndef FIPS_MODULE
1650     CRYPTO_free_ex_data(CRYPTO_EX_INDEX_EVP_PKEY, x, &x->ex_data);
1651 #endif
1652     CRYPTO_THREAD_lock_free(x->lock);
1653 #ifndef FIPS_MODULE
1654     sk_X509_ATTRIBUTE_pop_free(x->attributes, X509_ATTRIBUTE_free);
1655 #endif
1656     OPENSSL_free(x);
1657 }
1658
1659 int EVP_PKEY_size(const EVP_PKEY *pkey)
1660 {
1661     int size = 0;
1662
1663     if (pkey != NULL) {
1664         size = pkey->cache.size;
1665 #ifndef FIPS_MODULE
1666         if (pkey->ameth != NULL && pkey->ameth->pkey_size != NULL)
1667             size = pkey->ameth->pkey_size(pkey);
1668 #endif
1669     }
1670     return size < 0 ? 0 : size;
1671 }
1672
1673 void *evp_pkey_export_to_provider(EVP_PKEY *pk, OSSL_LIB_CTX *libctx,
1674                                   EVP_KEYMGMT **keymgmt,
1675                                   const char *propquery)
1676 {
1677     EVP_KEYMGMT *allocated_keymgmt = NULL;
1678     EVP_KEYMGMT *tmp_keymgmt = NULL;
1679     void *keydata = NULL;
1680     int check;
1681
1682     if (pk == NULL)
1683         return NULL;
1684
1685     /* No key data => nothing to export */
1686     check = 1;
1687 #ifndef FIPS_MODULE
1688     check = check && pk->pkey.ptr == NULL;
1689 #endif
1690     check = check && pk->keydata == NULL;
1691     if (check)
1692         return NULL;
1693
1694 #ifndef FIPS_MODULE
1695     if (pk->pkey.ptr != NULL) {
1696         /*
1697          * If the legacy key doesn't have an dirty counter or export function,
1698          * give up
1699          */
1700         if (pk->ameth->dirty_cnt == NULL || pk->ameth->export_to == NULL)
1701             return NULL;
1702     }
1703 #endif
1704
1705     if (keymgmt != NULL) {
1706         tmp_keymgmt = *keymgmt;
1707         *keymgmt = NULL;
1708     }
1709
1710     /*
1711      * If no keymgmt was given or found, get a default keymgmt.  We do so by
1712      * letting EVP_PKEY_CTX_new_from_pkey() do it for us, then we steal it.
1713      */
1714     if (tmp_keymgmt == NULL) {
1715         EVP_PKEY_CTX *ctx = EVP_PKEY_CTX_new_from_pkey(libctx, pk, propquery);
1716
1717         tmp_keymgmt = ctx->keymgmt;
1718         ctx->keymgmt = NULL;
1719         EVP_PKEY_CTX_free(ctx);
1720     }
1721
1722     /* If there's still no keymgmt to be had, give up */
1723     if (tmp_keymgmt == NULL)
1724         goto end;
1725
1726 #ifndef FIPS_MODULE
1727     if (pk->pkey.ptr != NULL) {
1728         size_t i = 0;
1729
1730         /*
1731          * If the legacy "origin" hasn't changed since last time, we try
1732          * to find our keymgmt in the operation cache.  If it has changed,
1733          * |i| remains zero, and we will clear the cache further down.
1734          */
1735         if (pk->ameth->dirty_cnt(pk) == pk->dirty_cnt_copy) {
1736             i = evp_keymgmt_util_find_operation_cache_index(pk, tmp_keymgmt);
1737
1738             /*
1739              * If |tmp_keymgmt| is present in the operation cache, it means
1740              * that export doesn't need to be redone.  In that case, we take
1741              * token copies of the cached pointers, to have token success
1742              * values to return.
1743              */
1744             if (i < OSSL_NELEM(pk->operation_cache)
1745                 && pk->operation_cache[i].keymgmt != NULL) {
1746                 keydata = pk->operation_cache[i].keydata;
1747                 goto end;
1748             }
1749         }
1750
1751         /*
1752          * TODO(3.0) Right now, we assume we have ample space.  We will have
1753          * to think about a cache aging scheme, though, if |i| indexes outside
1754          * the array.
1755          */
1756         if (!ossl_assert(i < OSSL_NELEM(pk->operation_cache)))
1757             goto end;
1758
1759         /* Make sure that the keymgmt key type matches the legacy NID */
1760         if (!ossl_assert(EVP_KEYMGMT_is_a(tmp_keymgmt, OBJ_nid2sn(pk->type))))
1761             goto end;
1762
1763         if ((keydata = evp_keymgmt_newdata(tmp_keymgmt)) == NULL)
1764             goto end;
1765
1766         if (!pk->ameth->export_to(pk, keydata, tmp_keymgmt, libctx, propquery)) {
1767             evp_keymgmt_freedata(tmp_keymgmt, keydata);
1768             keydata = NULL;
1769             goto end;
1770         }
1771
1772         /*
1773          * If the dirty counter changed since last time, then clear the
1774          * operation cache.  In that case, we know that |i| is zero.  Just
1775          * in case this is a re-export, we increment then decrement the
1776          * keymgmt reference counter.
1777          */
1778         if (!EVP_KEYMGMT_up_ref(tmp_keymgmt)) { /* refcnt++ */
1779             evp_keymgmt_freedata(tmp_keymgmt, keydata);
1780             keydata = NULL;
1781             goto end;
1782         }
1783         if (pk->ameth->dirty_cnt(pk) != pk->dirty_cnt_copy)
1784             evp_keymgmt_util_clear_operation_cache(pk);
1785         EVP_KEYMGMT_free(tmp_keymgmt); /* refcnt-- */
1786
1787         /* Add the new export to the operation cache */
1788         if (!evp_keymgmt_util_cache_keydata(pk, i, tmp_keymgmt, keydata)) {
1789             evp_keymgmt_freedata(tmp_keymgmt, keydata);
1790             keydata = NULL;
1791             goto end;
1792         }
1793
1794         /* Synchronize the dirty count */
1795         pk->dirty_cnt_copy = pk->ameth->dirty_cnt(pk);
1796         goto end;
1797     }
1798 #endif  /* FIPS_MODULE */
1799
1800     keydata = evp_keymgmt_util_export_to_provider(pk, tmp_keymgmt);
1801
1802  end:
1803     /*
1804      * If nothing was exported, |tmp_keymgmt| might point at a freed
1805      * EVP_KEYMGMT, so we clear it to be safe.  It shouldn't be useful for
1806      * the caller either way in that case.
1807      */
1808     if (keydata == NULL)
1809         tmp_keymgmt = NULL;
1810
1811     if (keymgmt != NULL)
1812         *keymgmt = tmp_keymgmt;
1813
1814     EVP_KEYMGMT_free(allocated_keymgmt);
1815     return keydata;
1816 }
1817
1818 #ifndef FIPS_MODULE
1819 int evp_pkey_copy_downgraded(EVP_PKEY **dest, const EVP_PKEY *src)
1820 {
1821     if (!ossl_assert(dest != NULL))
1822         return 0;
1823
1824     if (evp_pkey_is_assigned(src) && evp_pkey_is_provided(src)) {
1825         EVP_KEYMGMT *keymgmt = src->keymgmt;
1826         void *keydata = src->keydata;
1827         int type = src->type;
1828         const char *keytype = NULL;
1829
1830         keytype = evp_first_name(EVP_KEYMGMT_provider(keymgmt),
1831                                  keymgmt->name_id);
1832
1833         /*
1834          * If the type is EVP_PKEY_NONE, then we have a problem somewhere
1835          * else in our code.  If it's not one of the well known EVP_PKEY_xxx
1836          * values, it should at least be EVP_PKEY_KEYMGMT at this point.
1837          * TODO(3.0) remove this check when we're confident that the rest
1838          * of the code treats this correctly.
1839          */
1840         if (!ossl_assert(type != EVP_PKEY_NONE)) {
1841             ERR_raise_data(ERR_LIB_EVP, ERR_R_INTERNAL_ERROR,
1842                            "keymgmt key type = %s but legacy type = EVP_PKEY_NONE",
1843                            keytype);
1844             return 0;
1845         }
1846
1847         /* Prefer the legacy key type name for error reporting */
1848         if (type != EVP_PKEY_KEYMGMT)
1849             keytype = OBJ_nid2sn(type);
1850
1851         /* Make sure we have a clean slate to copy into */
1852         if (*dest == NULL)
1853             *dest = EVP_PKEY_new();
1854         else
1855             evp_pkey_free_it(*dest);
1856
1857         if (EVP_PKEY_set_type(*dest, type)) {
1858             /* If the key is typed but empty, we're done */
1859             if (keydata == NULL)
1860                 return 1;
1861
1862             if ((*dest)->ameth->import_from == NULL) {
1863                 ERR_raise_data(ERR_LIB_EVP, EVP_R_NO_IMPORT_FUNCTION,
1864                                "key type = %s", keytype);
1865             } else {
1866                 /*
1867                  * We perform the export in the same libctx as the keymgmt
1868                  * that we are using.
1869                  */
1870                 OSSL_LIB_CTX *libctx =
1871                     ossl_provider_libctx(keymgmt->prov);
1872                 EVP_PKEY_CTX *pctx =
1873                     EVP_PKEY_CTX_new_from_pkey(libctx, *dest, NULL);
1874
1875                 if (pctx == NULL)
1876                     ERR_raise(ERR_LIB_EVP, ERR_R_MALLOC_FAILURE);
1877
1878                 if (pctx != NULL
1879                     && evp_keymgmt_export(keymgmt, keydata,
1880                                           OSSL_KEYMGMT_SELECT_ALL,
1881                                           (*dest)->ameth->import_from,
1882                                           pctx)) {
1883                     /* Synchronize the dirty count */
1884                     (*dest)->dirty_cnt_copy = (*dest)->ameth->dirty_cnt(*dest);
1885
1886                     EVP_PKEY_CTX_free(pctx);
1887                     return 1;
1888                 }
1889                 EVP_PKEY_CTX_free(pctx);
1890             }
1891
1892             ERR_raise_data(ERR_LIB_EVP, EVP_R_KEYMGMT_EXPORT_FAILURE,
1893                            "key type = %s", keytype);
1894         }
1895     }
1896
1897     return 0;
1898 }
1899
1900 int evp_pkey_downgrade(EVP_PKEY *pk)
1901 {
1902     EVP_PKEY tmp_copy;              /* Stack allocated! */
1903     int rv = 0;
1904
1905     if (!ossl_assert(pk != NULL))
1906         return 0;
1907
1908     /*
1909      * Throughout this whole function, we must ensure that we lock / unlock
1910      * the exact same lock.  Note that we do pass it around a bit.
1911      */
1912     if (!CRYPTO_THREAD_write_lock(pk->lock))
1913         return 0;
1914
1915     /* If this isn't an assigned provider side key, we're done */
1916     if (!evp_pkey_is_assigned(pk) || !evp_pkey_is_provided(pk)) {
1917         rv = 1;
1918         goto end;
1919     }
1920
1921     /*
1922      * To be able to downgrade, we steal the contents of |pk|, then reset
1923      * it, and finally try to make it a downgraded copy.  If any of that
1924      * fails, we restore the copied contents into |pk|.
1925      */
1926     tmp_copy = *pk;              /* |tmp_copy| now owns THE lock */
1927
1928     if (evp_pkey_reset_unlocked(pk)
1929         && evp_pkey_copy_downgraded(&pk, &tmp_copy)) {
1930
1931         /* Restore the common attributes, then empty |tmp_copy| */
1932         pk->references = tmp_copy.references;
1933         pk->attributes = tmp_copy.attributes;
1934         pk->save_parameters = tmp_copy.save_parameters;
1935         pk->ex_data = tmp_copy.ex_data;
1936
1937         /* Ensure that stuff we've copied won't be freed */
1938         tmp_copy.lock = NULL;
1939         tmp_copy.attributes = NULL;
1940         memset(&tmp_copy.ex_data, 0, sizeof(tmp_copy.ex_data));
1941
1942         /*
1943          * Save the provider side data in the operation cache, so they'll
1944          * find it again.  |pk| is new, so it's safe to assume slot zero
1945          * is free.
1946          * Note that evp_keymgmt_util_cache_keydata() increments keymgmt's
1947          * reference count, so we need to decrement it, or there will be a
1948          * leak.
1949          */
1950         evp_keymgmt_util_cache_keydata(pk, 0, tmp_copy.keymgmt,
1951                                        tmp_copy.keydata);
1952         EVP_KEYMGMT_free(tmp_copy.keymgmt);
1953
1954         /*
1955          * Clear keymgmt and keydata from |tmp_copy|, or they'll get
1956          * inadvertently freed.
1957          */
1958         tmp_copy.keymgmt = NULL;
1959         tmp_copy.keydata = NULL;
1960
1961         evp_pkey_free_it(&tmp_copy);
1962         rv = 1;
1963     } else {
1964         /* Restore the original key */
1965         *pk = tmp_copy;
1966     }
1967
1968  end:
1969     if (!CRYPTO_THREAD_unlock(pk->lock))
1970         return 0;
1971     return rv;
1972 }
1973 #endif  /* FIPS_MODULE */
1974
1975 const OSSL_PARAM *EVP_PKEY_gettable_params(const EVP_PKEY *pkey)
1976 {
1977     if (pkey == NULL
1978         || pkey->keymgmt == NULL
1979         || pkey->keydata == NULL)
1980         return 0;
1981     return EVP_KEYMGMT_gettable_params(pkey->keymgmt);
1982 }
1983
1984 int EVP_PKEY_get_bn_param(const EVP_PKEY *pkey, const char *key_name,
1985                           BIGNUM **bn)
1986 {
1987     int ret = 0;
1988     OSSL_PARAM params[2];
1989     unsigned char buffer[2048];
1990     unsigned char *buf = NULL;
1991     size_t buf_sz = 0;
1992
1993     if (pkey == NULL
1994         || pkey->keymgmt == NULL
1995         || pkey->keydata == NULL
1996         || key_name == NULL
1997         || bn == NULL)
1998         return 0;
1999
2000     memset(buffer, 0, sizeof(buffer));
2001     params[0] = OSSL_PARAM_construct_BN(key_name, buffer, sizeof(buffer));
2002     params[1] = OSSL_PARAM_construct_end();
2003     if (!evp_keymgmt_get_params(pkey->keymgmt, pkey->keydata, params)) {
2004         if (!OSSL_PARAM_modified(params) || params[0].return_size == 0)
2005             return 0;
2006         buf_sz = params[0].return_size;
2007         /*
2008          * If it failed because the buffer was too small then allocate the
2009          * required buffer size and retry.
2010          */
2011         buf = OPENSSL_zalloc(buf_sz);
2012         if (buf == NULL)
2013             return 0;
2014         params[0].data = buf;
2015         params[0].data_size = buf_sz;
2016
2017         if (!evp_keymgmt_get_params(pkey->keymgmt, pkey->keydata, params))
2018             goto err;
2019     }
2020     /* Fail if the param was not found */
2021     if (!OSSL_PARAM_modified(params))
2022         goto err;
2023     ret = OSSL_PARAM_get_BN(params, bn);
2024 err:
2025     OPENSSL_free(buf);
2026     return ret;
2027 }
2028
2029 int EVP_PKEY_get_octet_string_param(const EVP_PKEY *pkey, const char *key_name,
2030                                     unsigned char *buf, size_t max_buf_sz,
2031                                     size_t *out_sz)
2032 {
2033     OSSL_PARAM params[2];
2034
2035     if (pkey == NULL
2036         || pkey->keymgmt == NULL
2037         || pkey->keydata == NULL
2038         || key_name == NULL)
2039         return 0;
2040
2041     params[0] = OSSL_PARAM_construct_octet_string(key_name, buf, max_buf_sz);
2042     params[1] = OSSL_PARAM_construct_end();
2043     if (!evp_keymgmt_get_params(pkey->keymgmt, pkey->keydata, params)
2044         || !OSSL_PARAM_modified(params))
2045         return 0;
2046     if (out_sz != NULL)
2047         *out_sz = params[0].return_size;
2048     return 1;
2049 }
2050
2051 int EVP_PKEY_get_utf8_string_param(const EVP_PKEY *pkey, const char *key_name,
2052                                     char *str, size_t max_buf_sz,
2053                                     size_t *out_sz)
2054 {
2055     OSSL_PARAM params[2];
2056
2057     if (pkey == NULL
2058         || pkey->keymgmt == NULL
2059         || pkey->keydata == NULL
2060         || key_name == NULL)
2061         return 0;
2062
2063     params[0] = OSSL_PARAM_construct_utf8_string(key_name, str, max_buf_sz);
2064     params[1] = OSSL_PARAM_construct_end();
2065     if (!evp_keymgmt_get_params(pkey->keymgmt, pkey->keydata, params)
2066         || !OSSL_PARAM_modified(params))
2067         return 0;
2068     if (out_sz != NULL)
2069         *out_sz = params[0].return_size;
2070     return 1;
2071 }
2072
2073 int EVP_PKEY_get_int_param(const EVP_PKEY *pkey, const char *key_name,
2074                            int *out)
2075 {
2076     OSSL_PARAM params[2];
2077
2078     if (pkey == NULL
2079         || pkey->keymgmt == NULL
2080         || pkey->keydata == NULL
2081         || key_name == NULL)
2082         return 0;
2083
2084     params[0] = OSSL_PARAM_construct_int(key_name, out);
2085     params[1] = OSSL_PARAM_construct_end();
2086     if (!evp_keymgmt_get_params(pkey->keymgmt, pkey->keydata, params)
2087         || !OSSL_PARAM_modified(params))
2088         return 0;
2089     return 1;
2090 }
2091
2092 int EVP_PKEY_get_size_t_param(const EVP_PKEY *pkey, const char *key_name,
2093                               size_t *out)
2094 {
2095     OSSL_PARAM params[2];
2096
2097     if (pkey == NULL
2098         || pkey->keymgmt == NULL
2099         || pkey->keydata == NULL
2100         || key_name == NULL)
2101         return 0;
2102
2103     params[0] = OSSL_PARAM_construct_size_t(key_name, out);
2104     params[1] = OSSL_PARAM_construct_end();
2105     if (!evp_keymgmt_get_params(pkey->keymgmt, pkey->keydata, params)
2106         || !OSSL_PARAM_modified(params))
2107         return 0;
2108     return 1;
2109 }