944fc05835c026eeb5b3fa597407c87580bba19c
[openssl.git] / crypto / ec / ec_ameth.c
1 /*
2  * Copyright 2006-2018 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  * ECDH and ECDSA low level APIs are deprecated for public use, but still ok
12  * for internal use.
13  */
14 #include "internal/deprecated.h"
15
16 #include <stdio.h>
17 #include "internal/cryptlib.h"
18 #include <openssl/x509.h>
19 #include <openssl/ec.h>
20 #include <openssl/bn.h>
21 #include <openssl/cms.h>
22 #include <openssl/asn1t.h>
23 #include "crypto/asn1.h"
24 #include "crypto/evp.h"
25 #include <openssl/core_names.h>
26 #include "internal/param_build.h"
27 #include "ec_local.h"
28
29 #ifndef OPENSSL_NO_CMS
30 static int ecdh_cms_decrypt(CMS_RecipientInfo *ri);
31 static int ecdh_cms_encrypt(CMS_RecipientInfo *ri);
32 #endif
33
34 static int eckey_param2type(int *pptype, void **ppval, const EC_KEY *ec_key)
35 {
36     const EC_GROUP *group;
37     int nid;
38     if (ec_key == NULL || (group = EC_KEY_get0_group(ec_key)) == NULL) {
39         ECerr(EC_F_ECKEY_PARAM2TYPE, EC_R_MISSING_PARAMETERS);
40         return 0;
41     }
42     if (EC_GROUP_get_asn1_flag(group)
43         && (nid = EC_GROUP_get_curve_name(group)))
44         /* we have a 'named curve' => just set the OID */
45     {
46         *ppval = OBJ_nid2obj(nid);
47         *pptype = V_ASN1_OBJECT;
48     } else {                    /* explicit parameters */
49
50         ASN1_STRING *pstr = NULL;
51         pstr = ASN1_STRING_new();
52         if (pstr == NULL)
53             return 0;
54         pstr->length = i2d_ECParameters(ec_key, &pstr->data);
55         if (pstr->length <= 0) {
56             ASN1_STRING_free(pstr);
57             ECerr(EC_F_ECKEY_PARAM2TYPE, ERR_R_EC_LIB);
58             return 0;
59         }
60         *ppval = pstr;
61         *pptype = V_ASN1_SEQUENCE;
62     }
63     return 1;
64 }
65
66 static int eckey_pub_encode(X509_PUBKEY *pk, const EVP_PKEY *pkey)
67 {
68     const EC_KEY *ec_key = pkey->pkey.ec;
69     void *pval = NULL;
70     int ptype;
71     unsigned char *penc = NULL, *p;
72     int penclen;
73
74     if (!eckey_param2type(&ptype, &pval, ec_key)) {
75         ECerr(EC_F_ECKEY_PUB_ENCODE, ERR_R_EC_LIB);
76         return 0;
77     }
78     penclen = i2o_ECPublicKey(ec_key, NULL);
79     if (penclen <= 0)
80         goto err;
81     penc = OPENSSL_malloc(penclen);
82     if (penc == NULL)
83         goto err;
84     p = penc;
85     penclen = i2o_ECPublicKey(ec_key, &p);
86     if (penclen <= 0)
87         goto err;
88     if (X509_PUBKEY_set0_param(pk, OBJ_nid2obj(EVP_PKEY_EC),
89                                ptype, pval, penc, penclen))
90         return 1;
91  err:
92     if (ptype == V_ASN1_OBJECT)
93         ASN1_OBJECT_free(pval);
94     else
95         ASN1_STRING_free(pval);
96     OPENSSL_free(penc);
97     return 0;
98 }
99
100 static EC_KEY *eckey_type2param(int ptype, const void *pval)
101 {
102     EC_KEY *eckey = NULL;
103     EC_GROUP *group = NULL;
104
105     if (ptype == V_ASN1_SEQUENCE) {
106         const ASN1_STRING *pstr = pval;
107         const unsigned char *pm = pstr->data;
108         int pmlen = pstr->length;
109
110         if ((eckey = d2i_ECParameters(NULL, &pm, pmlen)) == NULL) {
111             ECerr(EC_F_ECKEY_TYPE2PARAM, EC_R_DECODE_ERROR);
112             goto ecerr;
113         }
114     } else if (ptype == V_ASN1_OBJECT) {
115         const ASN1_OBJECT *poid = pval;
116
117         /*
118          * type == V_ASN1_OBJECT => the parameters are given by an asn1 OID
119          */
120         if ((eckey = EC_KEY_new()) == NULL) {
121             ECerr(EC_F_ECKEY_TYPE2PARAM, ERR_R_MALLOC_FAILURE);
122             goto ecerr;
123         }
124         group = EC_GROUP_new_by_curve_name(OBJ_obj2nid(poid));
125         if (group == NULL)
126             goto ecerr;
127         EC_GROUP_set_asn1_flag(group, OPENSSL_EC_NAMED_CURVE);
128         if (EC_KEY_set_group(eckey, group) == 0)
129             goto ecerr;
130         EC_GROUP_free(group);
131     } else {
132         ECerr(EC_F_ECKEY_TYPE2PARAM, EC_R_DECODE_ERROR);
133         goto ecerr;
134     }
135
136     return eckey;
137
138  ecerr:
139     EC_KEY_free(eckey);
140     EC_GROUP_free(group);
141     return NULL;
142 }
143
144 static int eckey_pub_decode(EVP_PKEY *pkey, X509_PUBKEY *pubkey)
145 {
146     const unsigned char *p = NULL;
147     const void *pval;
148     int ptype, pklen;
149     EC_KEY *eckey = NULL;
150     X509_ALGOR *palg;
151
152     if (!X509_PUBKEY_get0_param(NULL, &p, &pklen, &palg, pubkey))
153         return 0;
154     X509_ALGOR_get0(NULL, &ptype, &pval, palg);
155
156     eckey = eckey_type2param(ptype, pval);
157
158     if (!eckey) {
159         ECerr(EC_F_ECKEY_PUB_DECODE, ERR_R_EC_LIB);
160         return 0;
161     }
162
163     /* We have parameters now set public key */
164     if (!o2i_ECPublicKey(&eckey, &p, pklen)) {
165         ECerr(EC_F_ECKEY_PUB_DECODE, EC_R_DECODE_ERROR);
166         goto ecerr;
167     }
168
169     EVP_PKEY_assign_EC_KEY(pkey, eckey);
170     return 1;
171
172  ecerr:
173     EC_KEY_free(eckey);
174     return 0;
175 }
176
177 static int eckey_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
178 {
179     int r;
180     const EC_GROUP *group = EC_KEY_get0_group(b->pkey.ec);
181     const EC_POINT *pa = EC_KEY_get0_public_key(a->pkey.ec),
182         *pb = EC_KEY_get0_public_key(b->pkey.ec);
183     if (group == NULL || pa == NULL || pb == NULL)
184         return -2;
185     r = EC_POINT_cmp(group, pa, pb, NULL);
186     if (r == 0)
187         return 1;
188     if (r == 1)
189         return 0;
190     return -2;
191 }
192
193 static int eckey_priv_decode(EVP_PKEY *pkey, const PKCS8_PRIV_KEY_INFO *p8)
194 {
195     const unsigned char *p = NULL;
196     const void *pval;
197     int ptype, pklen;
198     EC_KEY *eckey = NULL;
199     const X509_ALGOR *palg;
200
201     if (!PKCS8_pkey_get0(NULL, &p, &pklen, &palg, p8))
202         return 0;
203     X509_ALGOR_get0(NULL, &ptype, &pval, palg);
204
205     eckey = eckey_type2param(ptype, pval);
206
207     if (eckey == NULL)
208         goto ecliberr;
209
210     /* We have parameters now set private key */
211     if (!d2i_ECPrivateKey(&eckey, &p, pklen)) {
212         ECerr(EC_F_ECKEY_PRIV_DECODE, EC_R_DECODE_ERROR);
213         goto ecerr;
214     }
215
216     EVP_PKEY_assign_EC_KEY(pkey, eckey);
217     return 1;
218
219  ecliberr:
220     ECerr(EC_F_ECKEY_PRIV_DECODE, ERR_R_EC_LIB);
221  ecerr:
222     EC_KEY_free(eckey);
223     return 0;
224 }
225
226 static int eckey_priv_encode(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pkey)
227 {
228     EC_KEY ec_key = *(pkey->pkey.ec);
229     unsigned char *ep, *p;
230     int eplen, ptype;
231     void *pval;
232     unsigned int old_flags;
233
234     if (!eckey_param2type(&ptype, &pval, &ec_key)) {
235         ECerr(EC_F_ECKEY_PRIV_ENCODE, EC_R_DECODE_ERROR);
236         return 0;
237     }
238
239     /* set the private key */
240
241     /*
242      * do not include the parameters in the SEC1 private key see PKCS#11
243      * 12.11
244      */
245     old_flags = EC_KEY_get_enc_flags(&ec_key);
246     EC_KEY_set_enc_flags(&ec_key, old_flags | EC_PKEY_NO_PARAMETERS);
247
248     eplen = i2d_ECPrivateKey(&ec_key, NULL);
249     if (!eplen) {
250         ECerr(EC_F_ECKEY_PRIV_ENCODE, ERR_R_EC_LIB);
251         return 0;
252     }
253     ep = OPENSSL_malloc(eplen);
254     if (ep == NULL) {
255         ECerr(EC_F_ECKEY_PRIV_ENCODE, ERR_R_MALLOC_FAILURE);
256         return 0;
257     }
258     p = ep;
259     if (!i2d_ECPrivateKey(&ec_key, &p)) {
260         OPENSSL_free(ep);
261         ECerr(EC_F_ECKEY_PRIV_ENCODE, ERR_R_EC_LIB);
262         return 0;
263     }
264
265     if (!PKCS8_pkey_set0(p8, OBJ_nid2obj(NID_X9_62_id_ecPublicKey), 0,
266                          ptype, pval, ep, eplen)) {
267         OPENSSL_free(ep);
268         return 0;
269     }
270
271     return 1;
272 }
273
274 static int int_ec_size(const EVP_PKEY *pkey)
275 {
276     return ECDSA_size(pkey->pkey.ec);
277 }
278
279 static int ec_bits(const EVP_PKEY *pkey)
280 {
281     return EC_GROUP_order_bits(EC_KEY_get0_group(pkey->pkey.ec));
282 }
283
284 static int ec_security_bits(const EVP_PKEY *pkey)
285 {
286     int ecbits = ec_bits(pkey);
287     if (ecbits >= 512)
288         return 256;
289     if (ecbits >= 384)
290         return 192;
291     if (ecbits >= 256)
292         return 128;
293     if (ecbits >= 224)
294         return 112;
295     if (ecbits >= 160)
296         return 80;
297     return ecbits / 2;
298 }
299
300 static int ec_missing_parameters(const EVP_PKEY *pkey)
301 {
302     if (pkey->pkey.ec == NULL || EC_KEY_get0_group(pkey->pkey.ec) == NULL)
303         return 1;
304     return 0;
305 }
306
307 static int ec_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from)
308 {
309     EC_GROUP *group = EC_GROUP_dup(EC_KEY_get0_group(from->pkey.ec));
310
311     if (group == NULL)
312         return 0;
313     if (to->pkey.ec == NULL) {
314         to->pkey.ec = EC_KEY_new();
315         if (to->pkey.ec == NULL)
316             goto err;
317     }
318     if (EC_KEY_set_group(to->pkey.ec, group) == 0)
319         goto err;
320     EC_GROUP_free(group);
321     return 1;
322  err:
323     EC_GROUP_free(group);
324     return 0;
325 }
326
327 static int ec_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
328 {
329     const EC_GROUP *group_a = EC_KEY_get0_group(a->pkey.ec),
330         *group_b = EC_KEY_get0_group(b->pkey.ec);
331     if (group_a == NULL || group_b == NULL)
332         return -2;
333     if (EC_GROUP_cmp(group_a, group_b, NULL))
334         return 0;
335     else
336         return 1;
337 }
338
339 static void int_ec_free(EVP_PKEY *pkey)
340 {
341     EC_KEY_free(pkey->pkey.ec);
342 }
343
344 typedef enum {
345     EC_KEY_PRINT_PRIVATE,
346     EC_KEY_PRINT_PUBLIC,
347     EC_KEY_PRINT_PARAM
348 } ec_print_t;
349
350 static int do_EC_KEY_print(BIO *bp, const EC_KEY *x, int off, ec_print_t ktype)
351 {
352     const char *ecstr;
353     unsigned char *priv = NULL, *pub = NULL;
354     size_t privlen = 0, publen = 0;
355     int ret = 0;
356     const EC_GROUP *group;
357
358     if (x == NULL || (group = EC_KEY_get0_group(x)) == NULL) {
359         ECerr(EC_F_DO_EC_KEY_PRINT, ERR_R_PASSED_NULL_PARAMETER);
360         return 0;
361     }
362
363     if (ktype != EC_KEY_PRINT_PARAM && EC_KEY_get0_public_key(x) != NULL) {
364         publen = EC_KEY_key2buf(x, EC_KEY_get_conv_form(x), &pub, NULL);
365         if (publen == 0)
366             goto err;
367     }
368
369     if (ktype == EC_KEY_PRINT_PRIVATE && EC_KEY_get0_private_key(x) != NULL) {
370         privlen = EC_KEY_priv2buf(x, &priv);
371         if (privlen == 0)
372             goto err;
373     }
374
375     if (ktype == EC_KEY_PRINT_PRIVATE)
376         ecstr = "Private-Key";
377     else if (ktype == EC_KEY_PRINT_PUBLIC)
378         ecstr = "Public-Key";
379     else
380         ecstr = "ECDSA-Parameters";
381
382     if (!BIO_indent(bp, off, 128))
383         goto err;
384     if (BIO_printf(bp, "%s: (%d bit)\n", ecstr,
385                    EC_GROUP_order_bits(group)) <= 0)
386         goto err;
387
388     if (privlen != 0) {
389         if (BIO_printf(bp, "%*spriv:\n", off, "") <= 0)
390             goto err;
391         if (ASN1_buf_print(bp, priv, privlen, off + 4) == 0)
392             goto err;
393     }
394
395     if (publen != 0) {
396         if (BIO_printf(bp, "%*spub:\n", off, "") <= 0)
397             goto err;
398         if (ASN1_buf_print(bp, pub, publen, off + 4) == 0)
399             goto err;
400     }
401
402     if (!ECPKParameters_print(bp, group, off))
403         goto err;
404     ret = 1;
405  err:
406     if (!ret)
407         ECerr(EC_F_DO_EC_KEY_PRINT, ERR_R_EC_LIB);
408     OPENSSL_clear_free(priv, privlen);
409     OPENSSL_free(pub);
410     return ret;
411 }
412
413 static int eckey_param_decode(EVP_PKEY *pkey,
414                               const unsigned char **pder, int derlen)
415 {
416     EC_KEY *eckey;
417
418     if ((eckey = d2i_ECParameters(NULL, pder, derlen)) == NULL) {
419         ECerr(EC_F_ECKEY_PARAM_DECODE, ERR_R_EC_LIB);
420         return 0;
421     }
422     EVP_PKEY_assign_EC_KEY(pkey, eckey);
423     return 1;
424 }
425
426 static int eckey_param_encode(const EVP_PKEY *pkey, unsigned char **pder)
427 {
428     return i2d_ECParameters(pkey->pkey.ec, pder);
429 }
430
431 static int eckey_param_print(BIO *bp, const EVP_PKEY *pkey, int indent,
432                              ASN1_PCTX *ctx)
433 {
434     return do_EC_KEY_print(bp, pkey->pkey.ec, indent, EC_KEY_PRINT_PARAM);
435 }
436
437 static int eckey_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent,
438                            ASN1_PCTX *ctx)
439 {
440     return do_EC_KEY_print(bp, pkey->pkey.ec, indent, EC_KEY_PRINT_PUBLIC);
441 }
442
443 static int eckey_priv_print(BIO *bp, const EVP_PKEY *pkey, int indent,
444                             ASN1_PCTX *ctx)
445 {
446     return do_EC_KEY_print(bp, pkey->pkey.ec, indent, EC_KEY_PRINT_PRIVATE);
447 }
448
449 static int old_ec_priv_decode(EVP_PKEY *pkey,
450                               const unsigned char **pder, int derlen)
451 {
452     EC_KEY *ec;
453
454     if ((ec = d2i_ECPrivateKey(NULL, pder, derlen)) == NULL) {
455         ECerr(EC_F_OLD_EC_PRIV_DECODE, EC_R_DECODE_ERROR);
456         return 0;
457     }
458     EVP_PKEY_assign_EC_KEY(pkey, ec);
459     return 1;
460 }
461
462 static int old_ec_priv_encode(const EVP_PKEY *pkey, unsigned char **pder)
463 {
464     return i2d_ECPrivateKey(pkey->pkey.ec, pder);
465 }
466
467 static int ec_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2)
468 {
469     switch (op) {
470     case ASN1_PKEY_CTRL_PKCS7_SIGN:
471         if (arg1 == 0) {
472             int snid, hnid;
473             X509_ALGOR *alg1, *alg2;
474             PKCS7_SIGNER_INFO_get0_algs(arg2, NULL, &alg1, &alg2);
475             if (alg1 == NULL || alg1->algorithm == NULL)
476                 return -1;
477             hnid = OBJ_obj2nid(alg1->algorithm);
478             if (hnid == NID_undef)
479                 return -1;
480             if (!OBJ_find_sigid_by_algs(&snid, hnid, EVP_PKEY_id(pkey)))
481                 return -1;
482             X509_ALGOR_set0(alg2, OBJ_nid2obj(snid), V_ASN1_UNDEF, 0);
483         }
484         return 1;
485 #ifndef OPENSSL_NO_CMS
486     case ASN1_PKEY_CTRL_CMS_SIGN:
487         if (arg1 == 0) {
488             int snid, hnid;
489             X509_ALGOR *alg1, *alg2;
490             CMS_SignerInfo_get0_algs(arg2, NULL, NULL, &alg1, &alg2);
491             if (alg1 == NULL || alg1->algorithm == NULL)
492                 return -1;
493             hnid = OBJ_obj2nid(alg1->algorithm);
494             if (hnid == NID_undef)
495                 return -1;
496             if (!OBJ_find_sigid_by_algs(&snid, hnid, EVP_PKEY_id(pkey)))
497                 return -1;
498             X509_ALGOR_set0(alg2, OBJ_nid2obj(snid), V_ASN1_UNDEF, 0);
499         }
500         return 1;
501
502     case ASN1_PKEY_CTRL_CMS_ENVELOPE:
503         if (arg1 == 1)
504             return ecdh_cms_decrypt(arg2);
505         else if (arg1 == 0)
506             return ecdh_cms_encrypt(arg2);
507         return -2;
508
509     case ASN1_PKEY_CTRL_CMS_RI_TYPE:
510         *(int *)arg2 = CMS_RECIPINFO_AGREE;
511         return 1;
512 #endif
513
514     case ASN1_PKEY_CTRL_DEFAULT_MD_NID:
515         if (EVP_PKEY_id(pkey) == EVP_PKEY_SM2) {
516             /* For SM2, the only valid digest-alg is SM3 */
517             *(int *)arg2 = NID_sm3;
518             return 2;            /* Make it mandatory */
519         }
520         *(int *)arg2 = NID_sha256;
521         return 1;
522
523     case ASN1_PKEY_CTRL_SET1_TLS_ENCPT:
524         return EC_KEY_oct2key(EVP_PKEY_get0_EC_KEY(pkey), arg2, arg1, NULL);
525
526     case ASN1_PKEY_CTRL_GET1_TLS_ENCPT:
527         return EC_KEY_key2buf(EVP_PKEY_get0_EC_KEY(pkey),
528                               POINT_CONVERSION_UNCOMPRESSED, arg2, NULL);
529
530     default:
531         return -2;
532
533     }
534
535 }
536
537 static int ec_pkey_check(const EVP_PKEY *pkey)
538 {
539     EC_KEY *eckey = pkey->pkey.ec;
540
541     /* stay consistent to what EVP_PKEY_check demands */
542     if (eckey->priv_key == NULL) {
543         ECerr(EC_F_EC_PKEY_CHECK, EC_R_MISSING_PRIVATE_KEY);
544         return 0;
545     }
546
547     return EC_KEY_check_key(eckey);
548 }
549
550 static int ec_pkey_public_check(const EVP_PKEY *pkey)
551 {
552     EC_KEY *eckey = pkey->pkey.ec;
553
554     /*
555      * Note: it unnecessary to check eckey->pub_key here since
556      * it will be checked in EC_KEY_check_key(). In fact, the
557      * EC_KEY_check_key() mainly checks the public key, and checks
558      * the private key optionally (only if there is one). So if
559      * someone passes a whole EC key (public + private), this
560      * will also work...
561      */
562
563     return EC_KEY_check_key(eckey);
564 }
565
566 static int ec_pkey_param_check(const EVP_PKEY *pkey)
567 {
568     EC_KEY *eckey = pkey->pkey.ec;
569
570     /* stay consistent to what EVP_PKEY_check demands */
571     if (eckey->group == NULL) {
572         ECerr(EC_F_EC_PKEY_PARAM_CHECK, EC_R_MISSING_PARAMETERS);
573         return 0;
574     }
575
576     return EC_GROUP_check(eckey->group, NULL);
577 }
578
579 static
580 size_t ec_pkey_dirty_cnt(const EVP_PKEY *pkey)
581 {
582     return pkey->pkey.ec->dirty_cnt;
583 }
584
585 static ossl_inline
586 int ecparams_to_params(const EC_KEY *eckey, OSSL_PARAM_BLD *tmpl)
587 {
588     const EC_GROUP *ecg;
589     int curve_nid;
590
591     if (eckey == NULL)
592         return 0;
593
594     ecg = EC_KEY_get0_group(eckey);
595     if (ecg == NULL)
596         return 0;
597
598     curve_nid = EC_GROUP_get_curve_name(ecg);
599
600     if (curve_nid == NID_undef) {
601         /* explicit parameters */
602
603         /*
604          * TODO(3.0): should we support explicit parameters curves?
605          */
606         return 0;
607     } else {
608         /* named curve */
609         const char *curve_name = NULL;
610
611         if ((curve_name = OBJ_nid2sn(curve_nid)) == NULL)
612             return 0;
613
614         if (!ossl_param_bld_push_utf8_string(tmpl, OSSL_PKEY_PARAM_EC_NAME, curve_name, 0))
615             return 0;
616     }
617
618     return 1;
619 }
620
621 static
622 int ec_pkey_export_to(const EVP_PKEY *from, void *to_keydata,
623                       EVP_KEYMGMT *to_keymgmt)
624 {
625     const EC_KEY *eckey = NULL;
626     const EC_GROUP *ecg = NULL;
627     unsigned char *pub_key_buf = NULL;
628     size_t pub_key_buflen;
629     OSSL_PARAM_BLD tmpl;
630     OSSL_PARAM *params = NULL;
631     const BIGNUM *priv_key = NULL;
632     const EC_POINT *pub_point = NULL;
633     int selection = 0;
634     int rv = 0;
635
636     if (from == NULL
637             || (eckey = from->pkey.ec) == NULL
638             || (ecg = EC_KEY_get0_group(eckey)) == NULL)
639         return 0;
640
641     /*
642      * If the EC_KEY method is foreign, then we can't be sure of anything,
643      * and can therefore not export or pretend to export.
644      */
645     if (EC_KEY_get_method(eckey) != EC_KEY_OpenSSL())
646         return 0;
647
648     ossl_param_bld_init(&tmpl);
649
650     /* export the domain parameters */
651     if (!ecparams_to_params(eckey, &tmpl))
652         goto err;
653     selection |= OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS;
654
655     priv_key = EC_KEY_get0_private_key(eckey);
656     pub_point = EC_KEY_get0_public_key(eckey);
657
658     if (pub_point != NULL) {
659         /* convert pub_point to a octet string according to the SECG standard */
660         if ((pub_key_buflen = EC_POINT_point2buf(ecg, pub_point,
661                                                  POINT_CONVERSION_COMPRESSED,
662                                                  &pub_key_buf, NULL)) == 0
663             || !ossl_param_bld_push_octet_string(&tmpl,
664                                                  OSSL_PKEY_PARAM_PUB_KEY,
665                                                  pub_key_buf,
666                                                  pub_key_buflen))
667             goto err;
668         selection |= OSSL_KEYMGMT_SELECT_PUBLIC_KEY;
669     }
670
671     if (priv_key != NULL) {
672         size_t sz;
673         int ecbits;
674         int ecdh_cofactor_mode;
675
676         /*
677          * Key import/export should never leak the bit length of the secret
678          * scalar in the key.
679          *
680          * For this reason, on export we use padded BIGNUMs with fixed length.
681          *
682          * When importing we also should make sure that, even if short lived,
683          * the newly created BIGNUM is marked with the BN_FLG_CONSTTIME flag as
684          * soon as possible, so that any processing of this BIGNUM might opt for
685          * constant time implementations in the backend.
686          *
687          * Setting the BN_FLG_CONSTTIME flag alone is never enough, we also have
688          * to preallocate the BIGNUM internal buffer to a fixed public size big
689          * enough that operations performed during the processing never trigger
690          * a realloc which would leak the size of the scalar through memory
691          * accesses.
692          *
693          * Fixed Length
694          * ------------
695          *
696          * The order of the large prime subgroup of the curve is our choice for
697          * a fixed public size, as that is generally the upper bound for
698          * generating a private key in EC cryptosystems and should fit all valid
699          * secret scalars.
700          *
701          * For padding on export we just use the bit length of the order
702          * converted to bytes (rounding up).
703          *
704          * For preallocating the BIGNUM storage we look at the number of "words"
705          * required for the internal representation of the order, and we
706          * preallocate 2 extra "words" in case any of the subsequent processing
707          * might temporarily overflow the order length.
708          */
709         ecbits = EC_GROUP_order_bits(ecg);
710         if (ecbits <= 0)
711             goto err;
712
713         sz = (ecbits + 7 ) / 8;
714         if (!ossl_param_bld_push_BN_pad(&tmpl,
715                                         OSSL_PKEY_PARAM_PRIV_KEY,
716                                         priv_key, sz))
717             goto err;
718         selection |= OSSL_KEYMGMT_SELECT_PRIVATE_KEY;
719
720         /*
721          * The ECDH Cofactor Mode is defined only if the EC_KEY actually
722          * contains a private key, so we check for the flag and export it only
723          * in this case.
724          */
725         ecdh_cofactor_mode =
726             (EC_KEY_get_flags(eckey) & EC_FLAG_COFACTOR_ECDH) ? 1 : 0;
727
728         /* Export the ECDH_COFACTOR_MODE parameter */
729         if (!ossl_param_bld_push_int(&tmpl,
730                                      OSSL_PKEY_PARAM_USE_COFACTOR_ECDH,
731                                      ecdh_cofactor_mode))
732             goto err;
733         selection |= OSSL_KEYMGMT_SELECT_OTHER_PARAMETERS;
734     }
735
736     params = ossl_param_bld_to_param(&tmpl);
737
738     /* We export, the provider imports */
739     rv = evp_keymgmt_import(to_keymgmt, to_keydata, selection, params);
740
741  err:
742     ossl_param_bld_free(params);
743     OPENSSL_free(pub_key_buf);
744     return rv;
745 }
746
747 const EVP_PKEY_ASN1_METHOD eckey_asn1_meth = {
748     EVP_PKEY_EC,
749     EVP_PKEY_EC,
750     0,
751     "EC",
752     "OpenSSL EC algorithm",
753
754     eckey_pub_decode,
755     eckey_pub_encode,
756     eckey_pub_cmp,
757     eckey_pub_print,
758
759     eckey_priv_decode,
760     eckey_priv_encode,
761     eckey_priv_print,
762
763     int_ec_size,
764     ec_bits,
765     ec_security_bits,
766
767     eckey_param_decode,
768     eckey_param_encode,
769     ec_missing_parameters,
770     ec_copy_parameters,
771     ec_cmp_parameters,
772     eckey_param_print,
773     0,
774
775     int_ec_free,
776     ec_pkey_ctrl,
777     old_ec_priv_decode,
778     old_ec_priv_encode,
779
780     0, 0, 0,
781
782     ec_pkey_check,
783     ec_pkey_public_check,
784     ec_pkey_param_check,
785
786     0, /* set_priv_key */
787     0, /* set_pub_key */
788     0, /* get_priv_key */
789     0, /* get_pub_key */
790
791     ec_pkey_dirty_cnt,
792     ec_pkey_export_to
793 };
794
795 #if !defined(OPENSSL_NO_SM2)
796 const EVP_PKEY_ASN1_METHOD sm2_asn1_meth = {
797    EVP_PKEY_SM2,
798    EVP_PKEY_EC,
799    ASN1_PKEY_ALIAS
800 };
801 #endif
802
803 int EC_KEY_print(BIO *bp, const EC_KEY *x, int off)
804 {
805     int private = EC_KEY_get0_private_key(x) != NULL;
806
807     return do_EC_KEY_print(bp, x, off,
808                 private ? EC_KEY_PRINT_PRIVATE : EC_KEY_PRINT_PUBLIC);
809 }
810
811 int ECParameters_print(BIO *bp, const EC_KEY *x)
812 {
813     return do_EC_KEY_print(bp, x, 4, EC_KEY_PRINT_PARAM);
814 }
815
816 #ifndef OPENSSL_NO_CMS
817
818 static int ecdh_cms_set_peerkey(EVP_PKEY_CTX *pctx,
819                                 X509_ALGOR *alg, ASN1_BIT_STRING *pubkey)
820 {
821     const ASN1_OBJECT *aoid;
822     int atype;
823     const void *aval;
824     int rv = 0;
825     EVP_PKEY *pkpeer = NULL;
826     EC_KEY *ecpeer = NULL;
827     const unsigned char *p;
828     int plen;
829     X509_ALGOR_get0(&aoid, &atype, &aval, alg);
830     if (OBJ_obj2nid(aoid) != NID_X9_62_id_ecPublicKey)
831         goto err;
832     /* If absent parameters get group from main key */
833     if (atype == V_ASN1_UNDEF || atype == V_ASN1_NULL) {
834         const EC_GROUP *grp;
835         EVP_PKEY *pk;
836         pk = EVP_PKEY_CTX_get0_pkey(pctx);
837         if (pk == NULL)
838             goto err;
839         grp = EC_KEY_get0_group(pk->pkey.ec);
840         ecpeer = EC_KEY_new();
841         if (ecpeer == NULL)
842             goto err;
843         if (!EC_KEY_set_group(ecpeer, grp))
844             goto err;
845     } else {
846         ecpeer = eckey_type2param(atype, aval);
847         if (!ecpeer)
848             goto err;
849     }
850     /* We have parameters now set public key */
851     plen = ASN1_STRING_length(pubkey);
852     p = ASN1_STRING_get0_data(pubkey);
853     if (p == NULL || plen == 0)
854         goto err;
855     if (!o2i_ECPublicKey(&ecpeer, &p, plen))
856         goto err;
857     pkpeer = EVP_PKEY_new();
858     if (pkpeer == NULL)
859         goto err;
860     EVP_PKEY_set1_EC_KEY(pkpeer, ecpeer);
861     if (EVP_PKEY_derive_set_peer(pctx, pkpeer) > 0)
862         rv = 1;
863  err:
864     EC_KEY_free(ecpeer);
865     EVP_PKEY_free(pkpeer);
866     return rv;
867 }
868
869 /* Set KDF parameters based on KDF NID */
870 static int ecdh_cms_set_kdf_param(EVP_PKEY_CTX *pctx, int eckdf_nid)
871 {
872     int kdf_nid, kdfmd_nid, cofactor;
873     const EVP_MD *kdf_md;
874     if (eckdf_nid == NID_undef)
875         return 0;
876
877     /* Lookup KDF type, cofactor mode and digest */
878     if (!OBJ_find_sigid_algs(eckdf_nid, &kdfmd_nid, &kdf_nid))
879         return 0;
880
881     if (kdf_nid == NID_dh_std_kdf)
882         cofactor = 0;
883     else if (kdf_nid == NID_dh_cofactor_kdf)
884         cofactor = 1;
885     else
886         return 0;
887
888     if (EVP_PKEY_CTX_set_ecdh_cofactor_mode(pctx, cofactor) <= 0)
889         return 0;
890
891     if (EVP_PKEY_CTX_set_ecdh_kdf_type(pctx, EVP_PKEY_ECDH_KDF_X9_63) <= 0)
892         return 0;
893
894     kdf_md = EVP_get_digestbynid(kdfmd_nid);
895     if (!kdf_md)
896         return 0;
897
898     if (EVP_PKEY_CTX_set_ecdh_kdf_md(pctx, kdf_md) <= 0)
899         return 0;
900     return 1;
901 }
902
903 static int ecdh_cms_set_shared_info(EVP_PKEY_CTX *pctx, CMS_RecipientInfo *ri)
904 {
905     int rv = 0;
906
907     X509_ALGOR *alg, *kekalg = NULL;
908     ASN1_OCTET_STRING *ukm;
909     const unsigned char *p;
910     unsigned char *der = NULL;
911     int plen, keylen;
912     const EVP_CIPHER *kekcipher;
913     EVP_CIPHER_CTX *kekctx;
914
915     if (!CMS_RecipientInfo_kari_get0_alg(ri, &alg, &ukm))
916         return 0;
917
918     if (!ecdh_cms_set_kdf_param(pctx, OBJ_obj2nid(alg->algorithm))) {
919         ECerr(EC_F_ECDH_CMS_SET_SHARED_INFO, EC_R_KDF_PARAMETER_ERROR);
920         return 0;
921     }
922
923     if (alg->parameter->type != V_ASN1_SEQUENCE)
924         return 0;
925
926     p = alg->parameter->value.sequence->data;
927     plen = alg->parameter->value.sequence->length;
928     kekalg = d2i_X509_ALGOR(NULL, &p, plen);
929     if (!kekalg)
930         goto err;
931     kekctx = CMS_RecipientInfo_kari_get0_ctx(ri);
932     if (!kekctx)
933         goto err;
934     kekcipher = EVP_get_cipherbyobj(kekalg->algorithm);
935     if (!kekcipher || EVP_CIPHER_mode(kekcipher) != EVP_CIPH_WRAP_MODE)
936         goto err;
937     if (!EVP_EncryptInit_ex(kekctx, kekcipher, NULL, NULL, NULL))
938         goto err;
939     if (EVP_CIPHER_asn1_to_param(kekctx, kekalg->parameter) <= 0)
940         goto err;
941
942     keylen = EVP_CIPHER_CTX_key_length(kekctx);
943     if (EVP_PKEY_CTX_set_ecdh_kdf_outlen(pctx, keylen) <= 0)
944         goto err;
945
946     plen = CMS_SharedInfo_encode(&der, kekalg, ukm, keylen);
947
948     if (!plen)
949         goto err;
950
951     if (EVP_PKEY_CTX_set0_ecdh_kdf_ukm(pctx, der, plen) <= 0)
952         goto err;
953     der = NULL;
954
955     rv = 1;
956  err:
957     X509_ALGOR_free(kekalg);
958     OPENSSL_free(der);
959     return rv;
960 }
961
962 static int ecdh_cms_decrypt(CMS_RecipientInfo *ri)
963 {
964     EVP_PKEY_CTX *pctx;
965     pctx = CMS_RecipientInfo_get0_pkey_ctx(ri);
966     if (!pctx)
967         return 0;
968     /* See if we need to set peer key */
969     if (!EVP_PKEY_CTX_get0_peerkey(pctx)) {
970         X509_ALGOR *alg;
971         ASN1_BIT_STRING *pubkey;
972         if (!CMS_RecipientInfo_kari_get0_orig_id(ri, &alg, &pubkey,
973                                                  NULL, NULL, NULL))
974             return 0;
975         if (!alg || !pubkey)
976             return 0;
977         if (!ecdh_cms_set_peerkey(pctx, alg, pubkey)) {
978             ECerr(EC_F_ECDH_CMS_DECRYPT, EC_R_PEER_KEY_ERROR);
979             return 0;
980         }
981     }
982     /* Set ECDH derivation parameters and initialise unwrap context */
983     if (!ecdh_cms_set_shared_info(pctx, ri)) {
984         ECerr(EC_F_ECDH_CMS_DECRYPT, EC_R_SHARED_INFO_ERROR);
985         return 0;
986     }
987     return 1;
988 }
989
990 static int ecdh_cms_encrypt(CMS_RecipientInfo *ri)
991 {
992     EVP_PKEY_CTX *pctx;
993     EVP_PKEY *pkey;
994     EVP_CIPHER_CTX *ctx;
995     int keylen;
996     X509_ALGOR *talg, *wrap_alg = NULL;
997     const ASN1_OBJECT *aoid;
998     ASN1_BIT_STRING *pubkey;
999     ASN1_STRING *wrap_str;
1000     ASN1_OCTET_STRING *ukm;
1001     unsigned char *penc = NULL;
1002     int penclen;
1003     int rv = 0;
1004     int ecdh_nid, kdf_type, kdf_nid, wrap_nid;
1005     const EVP_MD *kdf_md;
1006     pctx = CMS_RecipientInfo_get0_pkey_ctx(ri);
1007     if (!pctx)
1008         return 0;
1009     /* Get ephemeral key */
1010     pkey = EVP_PKEY_CTX_get0_pkey(pctx);
1011     if (!CMS_RecipientInfo_kari_get0_orig_id(ri, &talg, &pubkey,
1012                                              NULL, NULL, NULL))
1013         goto err;
1014     X509_ALGOR_get0(&aoid, NULL, NULL, talg);
1015     /* Is everything uninitialised? */
1016     if (aoid == OBJ_nid2obj(NID_undef)) {
1017
1018         EC_KEY *eckey = pkey->pkey.ec;
1019         /* Set the key */
1020         unsigned char *p;
1021
1022         penclen = i2o_ECPublicKey(eckey, NULL);
1023         if (penclen <= 0)
1024             goto err;
1025         penc = OPENSSL_malloc(penclen);
1026         if (penc == NULL)
1027             goto err;
1028         p = penc;
1029         penclen = i2o_ECPublicKey(eckey, &p);
1030         if (penclen <= 0)
1031             goto err;
1032         ASN1_STRING_set0(pubkey, penc, penclen);
1033         pubkey->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT | 0x07);
1034         pubkey->flags |= ASN1_STRING_FLAG_BITS_LEFT;
1035
1036         penc = NULL;
1037         X509_ALGOR_set0(talg, OBJ_nid2obj(NID_X9_62_id_ecPublicKey),
1038                         V_ASN1_UNDEF, NULL);
1039     }
1040
1041     /* See if custom parameters set */
1042     kdf_type = EVP_PKEY_CTX_get_ecdh_kdf_type(pctx);
1043     if (kdf_type <= 0)
1044         goto err;
1045     if (!EVP_PKEY_CTX_get_ecdh_kdf_md(pctx, &kdf_md))
1046         goto err;
1047     ecdh_nid = EVP_PKEY_CTX_get_ecdh_cofactor_mode(pctx);
1048     if (ecdh_nid < 0)
1049         goto err;
1050     else if (ecdh_nid == 0)
1051         ecdh_nid = NID_dh_std_kdf;
1052     else if (ecdh_nid == 1)
1053         ecdh_nid = NID_dh_cofactor_kdf;
1054
1055     if (kdf_type == EVP_PKEY_ECDH_KDF_NONE) {
1056         kdf_type = EVP_PKEY_ECDH_KDF_X9_63;
1057         if (EVP_PKEY_CTX_set_ecdh_kdf_type(pctx, kdf_type) <= 0)
1058             goto err;
1059     } else
1060         /* Unknown KDF */
1061         goto err;
1062     if (kdf_md == NULL) {
1063         /* Fixme later for better MD */
1064         kdf_md = EVP_sha1();
1065         if (EVP_PKEY_CTX_set_ecdh_kdf_md(pctx, kdf_md) <= 0)
1066             goto err;
1067     }
1068
1069     if (!CMS_RecipientInfo_kari_get0_alg(ri, &talg, &ukm))
1070         goto err;
1071
1072     /* Lookup NID for KDF+cofactor+digest */
1073
1074     if (!OBJ_find_sigid_by_algs(&kdf_nid, EVP_MD_type(kdf_md), ecdh_nid))
1075         goto err;
1076     /* Get wrap NID */
1077     ctx = CMS_RecipientInfo_kari_get0_ctx(ri);
1078     wrap_nid = EVP_CIPHER_CTX_type(ctx);
1079     keylen = EVP_CIPHER_CTX_key_length(ctx);
1080
1081     /* Package wrap algorithm in an AlgorithmIdentifier */
1082
1083     wrap_alg = X509_ALGOR_new();
1084     if (wrap_alg == NULL)
1085         goto err;
1086     wrap_alg->algorithm = OBJ_nid2obj(wrap_nid);
1087     wrap_alg->parameter = ASN1_TYPE_new();
1088     if (wrap_alg->parameter == NULL)
1089         goto err;
1090     if (EVP_CIPHER_param_to_asn1(ctx, wrap_alg->parameter) <= 0)
1091         goto err;
1092     if (ASN1_TYPE_get(wrap_alg->parameter) == NID_undef) {
1093         ASN1_TYPE_free(wrap_alg->parameter);
1094         wrap_alg->parameter = NULL;
1095     }
1096
1097     if (EVP_PKEY_CTX_set_ecdh_kdf_outlen(pctx, keylen) <= 0)
1098         goto err;
1099
1100     penclen = CMS_SharedInfo_encode(&penc, wrap_alg, ukm, keylen);
1101
1102     if (!penclen)
1103         goto err;
1104
1105     if (EVP_PKEY_CTX_set0_ecdh_kdf_ukm(pctx, penc, penclen) <= 0)
1106         goto err;
1107     penc = NULL;
1108
1109     /*
1110      * Now need to wrap encoding of wrap AlgorithmIdentifier into parameter
1111      * of another AlgorithmIdentifier.
1112      */
1113     penclen = i2d_X509_ALGOR(wrap_alg, &penc);
1114     if (!penc || !penclen)
1115         goto err;
1116     wrap_str = ASN1_STRING_new();
1117     if (wrap_str == NULL)
1118         goto err;
1119     ASN1_STRING_set0(wrap_str, penc, penclen);
1120     penc = NULL;
1121     X509_ALGOR_set0(talg, OBJ_nid2obj(kdf_nid), V_ASN1_SEQUENCE, wrap_str);
1122
1123     rv = 1;
1124
1125  err:
1126     OPENSSL_free(penc);
1127     X509_ALGOR_free(wrap_alg);
1128     return rv;
1129 }
1130
1131 #endif