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