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