5be292379a1043cb9f6ba2b364b0fd1378f70c07
[openssl.git] / crypto / ec / ec_pmeth.c
1 /*
2  * Copyright 2006-2018 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (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 #include <stdio.h>
11 #include "internal/cryptlib.h"
12 #include <openssl/asn1t.h>
13 #include <openssl/x509.h>
14 #include <openssl/ec.h>
15 #include "ec_lcl.h"
16 #include <openssl/evp.h>
17 #include "internal/evp_int.h"
18
19 #if !defined(OPENSSL_NO_SM2)
20 # include <openssl/sm2.h>
21 #endif
22
23 /* EC pkey context structure */
24
25 typedef struct {
26     /* Key and paramgen group */
27     EC_GROUP *gen_group;
28     /* message digest */
29     const EVP_MD *md;
30     /* Duplicate key if custom cofactor needed */
31     EC_KEY *co_key;
32     /* Cofactor mode */
33     signed char cofactor_mode;
34     /* KDF (if any) to use for ECDH */
35     char kdf_type;
36     /* Message digest to use for key derivation */
37     const EVP_MD *kdf_md;
38     /* User key material */
39     unsigned char *kdf_ukm;
40     size_t kdf_ukmlen;
41     /* KDF output length */
42     size_t kdf_outlen;
43 } EC_PKEY_CTX;
44
45 static int pkey_ec_init(EVP_PKEY_CTX *ctx)
46 {
47     EC_PKEY_CTX *dctx;
48
49     if ((dctx = OPENSSL_zalloc(sizeof(*dctx))) == NULL) {
50         ECerr(EC_F_PKEY_EC_INIT, ERR_R_MALLOC_FAILURE);
51         return 0;
52     }
53
54     dctx->cofactor_mode = -1;
55     dctx->kdf_type = EVP_PKEY_ECDH_KDF_NONE;
56     ctx->data = dctx;
57     return 1;
58 }
59
60 static int pkey_ec_copy(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src)
61 {
62     EC_PKEY_CTX *dctx, *sctx;
63     if (!pkey_ec_init(dst))
64         return 0;
65     sctx = src->data;
66     dctx = dst->data;
67     if (sctx->gen_group) {
68         dctx->gen_group = EC_GROUP_dup(sctx->gen_group);
69         if (!dctx->gen_group)
70             return 0;
71     }
72     dctx->md = sctx->md;
73
74     if (sctx->co_key) {
75         dctx->co_key = EC_KEY_dup(sctx->co_key);
76         if (!dctx->co_key)
77             return 0;
78     }
79     dctx->kdf_type = sctx->kdf_type;
80     dctx->kdf_md = sctx->kdf_md;
81     dctx->kdf_outlen = sctx->kdf_outlen;
82     if (sctx->kdf_ukm) {
83         dctx->kdf_ukm = OPENSSL_memdup(sctx->kdf_ukm, sctx->kdf_ukmlen);
84         if (!dctx->kdf_ukm)
85             return 0;
86     } else
87         dctx->kdf_ukm = NULL;
88     dctx->kdf_ukmlen = sctx->kdf_ukmlen;
89     return 1;
90 }
91
92 static void pkey_ec_cleanup(EVP_PKEY_CTX *ctx)
93 {
94     EC_PKEY_CTX *dctx = ctx->data;
95     if (dctx) {
96         EC_GROUP_free(dctx->gen_group);
97         EC_KEY_free(dctx->co_key);
98         OPENSSL_free(dctx->kdf_ukm);
99         OPENSSL_free(dctx);
100     }
101 }
102
103 static int pkey_ec_sign(EVP_PKEY_CTX *ctx, unsigned char *sig, size_t *siglen,
104                         const unsigned char *tbs, size_t tbslen)
105 {
106     int ret, type;
107     unsigned int sltmp;
108     EC_PKEY_CTX *dctx = ctx->data;
109     EC_KEY *ec = ctx->pkey->pkey.ec;
110     const int ec_nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(ec));
111
112     if (!sig) {
113         *siglen = ECDSA_size(ec);
114         return 1;
115     } else if (*siglen < (size_t)ECDSA_size(ec)) {
116         ECerr(EC_F_PKEY_EC_SIGN, EC_R_BUFFER_TOO_SMALL);
117         return 0;
118     }
119
120     if (dctx->md)
121         type = EVP_MD_type(dctx->md);
122     else
123         type = NID_sha1;
124
125     if (ec_nid == NID_sm2) {
126 #if defined(OPENSSL_NO_SM2)
127         ret = -1;
128 #else
129         ret = SM2_sign(type, tbs, tbslen, sig, &sltmp, ec);
130 #endif
131     } else {
132         ret = ECDSA_sign(type, tbs, tbslen, sig, &sltmp, ec);
133     }
134
135     if (ret <= 0)
136         return ret;
137     *siglen = (size_t)sltmp;
138     return 1;
139 }
140
141 static int pkey_ec_verify(EVP_PKEY_CTX *ctx,
142                           const unsigned char *sig, size_t siglen,
143                           const unsigned char *tbs, size_t tbslen)
144 {
145     int ret, type;
146     EC_PKEY_CTX *dctx = ctx->data;
147     EC_KEY *ec = ctx->pkey->pkey.ec;
148     const int ec_nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(ec));
149
150     if (dctx->md)
151         type = EVP_MD_type(dctx->md);
152     else
153         type = NID_sha1;
154
155     if (ec_nid == NID_sm2) {
156 #if defined(OPENSSL_NO_SM2)
157         ret = -1;
158 #else
159         ret = SM2_verify(type, tbs, tbslen, sig, siglen, ec);
160 #endif
161     } else {
162         ret = ECDSA_verify(type, tbs, tbslen, sig, siglen, ec);
163     }
164
165     return ret;
166 }
167
168 #ifndef OPENSSL_NO_EC
169 static int pkey_ec_derive(EVP_PKEY_CTX *ctx, unsigned char *key, size_t *keylen)
170 {
171     int ret;
172     size_t outlen;
173     const EC_POINT *pubkey = NULL;
174     EC_KEY *eckey;
175     EC_PKEY_CTX *dctx = ctx->data;
176     if (!ctx->pkey || !ctx->peerkey) {
177         ECerr(EC_F_PKEY_EC_DERIVE, EC_R_KEYS_NOT_SET);
178         return 0;
179     }
180
181     eckey = dctx->co_key ? dctx->co_key : ctx->pkey->pkey.ec;
182
183     if (!key) {
184         const EC_GROUP *group;
185         group = EC_KEY_get0_group(eckey);
186         *keylen = (EC_GROUP_get_degree(group) + 7) / 8;
187         return 1;
188     }
189     pubkey = EC_KEY_get0_public_key(ctx->peerkey->pkey.ec);
190
191     /*
192      * NB: unlike PKCS#3 DH, if *outlen is less than maximum size this is not
193      * an error, the result is truncated.
194      */
195
196     outlen = *keylen;
197
198     ret = ECDH_compute_key(key, outlen, pubkey, eckey, 0);
199     if (ret <= 0)
200         return 0;
201     *keylen = ret;
202     return 1;
203 }
204
205 static int pkey_ecies_encrypt(EVP_PKEY_CTX *ctx,
206                               unsigned char *out, size_t *outlen,
207                               const unsigned char *in, size_t inlen)
208 {
209     int ret;
210     EC_KEY *ec = ctx->pkey->pkey.ec;
211     const int ec_nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(ec));
212
213     if (ec_nid == NID_sm2) {
214 # if defined(OPENSSL_NO_SM2)
215         ret = -1;
216 # else
217         int md_type;
218         EC_PKEY_CTX *dctx = ctx->data;
219
220         if (dctx->md)
221             md_type = EVP_MD_type(dctx->md);
222         else if (ec_nid == NID_sm2)
223             md_type = NID_sm3;
224         else
225             md_type = NID_sha256;
226
227         if (out == NULL) {
228             *outlen = SM2_ciphertext_size(ec, EVP_get_digestbynid(md_type),
229                                           inlen);
230             ret = 1;
231         }
232         else {
233             ret = SM2_encrypt(ec, EVP_get_digestbynid(md_type),
234                               in, inlen, out, outlen);
235         }
236 # endif
237     } else {
238         /* standard ECIES not implemented */
239         ret = -1;
240     }
241
242     return ret;
243 }
244
245 static int pkey_ecies_decrypt(EVP_PKEY_CTX *ctx,
246                               unsigned char *out, size_t *outlen,
247                               const unsigned char *in, size_t inlen)
248 {
249     int ret;
250     EC_KEY *ec = ctx->pkey->pkey.ec;
251     const int ec_nid = EC_GROUP_get_curve_name(EC_KEY_get0_group(ec));
252
253     if (ec_nid == NID_sm2) {
254 # if defined(OPENSSL_NO_SM2)
255         ret = -1;
256 # else
257         int md_type;
258         EC_PKEY_CTX *dctx = ctx->data;
259
260         if (dctx->md)
261             md_type = EVP_MD_type(dctx->md);
262         else if (ec_nid == NID_sm2)
263             md_type = NID_sm3;
264         else
265             md_type = NID_sha256;
266
267         if (out == NULL) {
268             *outlen = SM2_plaintext_size(ec, EVP_get_digestbynid(md_type), inlen);
269             ret = 1;
270         }
271         else {
272             ret = SM2_decrypt(ec, EVP_get_digestbynid(md_type),
273                               in, inlen, out, outlen);
274         }
275 # endif
276     } else {
277         /* standard ECIES not implemented */
278         ret = -1;
279     }
280
281     return ret;
282 }
283
284 static int pkey_ec_kdf_derive(EVP_PKEY_CTX *ctx,
285                               unsigned char *key, size_t *keylen)
286 {
287     EC_PKEY_CTX *dctx = ctx->data;
288     unsigned char *ktmp = NULL;
289     size_t ktmplen;
290     int rv = 0;
291     if (dctx->kdf_type == EVP_PKEY_ECDH_KDF_NONE)
292         return pkey_ec_derive(ctx, key, keylen);
293     if (!key) {
294         *keylen = dctx->kdf_outlen;
295         return 1;
296     }
297     if (*keylen != dctx->kdf_outlen)
298         return 0;
299     if (!pkey_ec_derive(ctx, NULL, &ktmplen))
300         return 0;
301     if ((ktmp = OPENSSL_malloc(ktmplen)) == NULL) {
302         ECerr(EC_F_PKEY_EC_KDF_DERIVE, ERR_R_MALLOC_FAILURE);
303         return 0;
304     }
305     if (!pkey_ec_derive(ctx, ktmp, &ktmplen))
306         goto err;
307     /* Do KDF stuff */
308     if (!ECDH_KDF_X9_62(key, *keylen, ktmp, ktmplen,
309                         dctx->kdf_ukm, dctx->kdf_ukmlen, dctx->kdf_md))
310         goto err;
311     rv = 1;
312
313  err:
314     OPENSSL_clear_free(ktmp, ktmplen);
315     return rv;
316 }
317 #endif
318
319 static int pkey_ec_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2)
320 {
321     EC_PKEY_CTX *dctx = ctx->data;
322     EC_GROUP *group;
323     switch (type) {
324     case EVP_PKEY_CTRL_EC_PARAMGEN_CURVE_NID:
325         group = EC_GROUP_new_by_curve_name(p1);
326         if (group == NULL) {
327             ECerr(EC_F_PKEY_EC_CTRL, EC_R_INVALID_CURVE);
328             return 0;
329         }
330         EC_GROUP_free(dctx->gen_group);
331         dctx->gen_group = group;
332         return 1;
333
334     case EVP_PKEY_CTRL_EC_PARAM_ENC:
335         if (!dctx->gen_group) {
336             ECerr(EC_F_PKEY_EC_CTRL, EC_R_NO_PARAMETERS_SET);
337             return 0;
338         }
339         EC_GROUP_set_asn1_flag(dctx->gen_group, p1);
340         return 1;
341
342 #ifndef OPENSSL_NO_EC
343     case EVP_PKEY_CTRL_EC_ECDH_COFACTOR:
344         if (p1 == -2) {
345             if (dctx->cofactor_mode != -1)
346                 return dctx->cofactor_mode;
347             else {
348                 EC_KEY *ec_key = ctx->pkey->pkey.ec;
349                 return EC_KEY_get_flags(ec_key) & EC_FLAG_COFACTOR_ECDH ? 1 : 0;
350             }
351         } else if (p1 < -1 || p1 > 1)
352             return -2;
353         dctx->cofactor_mode = p1;
354         if (p1 != -1) {
355             EC_KEY *ec_key = ctx->pkey->pkey.ec;
356             if (!ec_key->group)
357                 return -2;
358             /* If cofactor is 1 cofactor mode does nothing */
359             if (BN_is_one(ec_key->group->cofactor))
360                 return 1;
361             if (!dctx->co_key) {
362                 dctx->co_key = EC_KEY_dup(ec_key);
363                 if (!dctx->co_key)
364                     return 0;
365             }
366             if (p1)
367                 EC_KEY_set_flags(dctx->co_key, EC_FLAG_COFACTOR_ECDH);
368             else
369                 EC_KEY_clear_flags(dctx->co_key, EC_FLAG_COFACTOR_ECDH);
370         } else {
371             EC_KEY_free(dctx->co_key);
372             dctx->co_key = NULL;
373         }
374         return 1;
375 #endif
376
377     case EVP_PKEY_CTRL_EC_KDF_TYPE:
378         if (p1 == -2)
379             return dctx->kdf_type;
380         if (p1 != EVP_PKEY_ECDH_KDF_NONE && p1 != EVP_PKEY_ECDH_KDF_X9_62)
381             return -2;
382         dctx->kdf_type = p1;
383         return 1;
384
385     case EVP_PKEY_CTRL_EC_KDF_MD:
386         dctx->kdf_md = p2;
387         return 1;
388
389     case EVP_PKEY_CTRL_GET_EC_KDF_MD:
390         *(const EVP_MD **)p2 = dctx->kdf_md;
391         return 1;
392
393     case EVP_PKEY_CTRL_EC_KDF_OUTLEN:
394         if (p1 <= 0)
395             return -2;
396         dctx->kdf_outlen = (size_t)p1;
397         return 1;
398
399     case EVP_PKEY_CTRL_GET_EC_KDF_OUTLEN:
400         *(int *)p2 = dctx->kdf_outlen;
401         return 1;
402
403     case EVP_PKEY_CTRL_EC_KDF_UKM:
404         OPENSSL_free(dctx->kdf_ukm);
405         dctx->kdf_ukm = p2;
406         if (p2)
407             dctx->kdf_ukmlen = p1;
408         else
409             dctx->kdf_ukmlen = 0;
410         return 1;
411
412     case EVP_PKEY_CTRL_GET_EC_KDF_UKM:
413         *(unsigned char **)p2 = dctx->kdf_ukm;
414         return dctx->kdf_ukmlen;
415
416     case EVP_PKEY_CTRL_MD:
417         if (EVP_MD_type((const EVP_MD *)p2) != NID_sha1 &&
418             EVP_MD_type((const EVP_MD *)p2) != NID_ecdsa_with_SHA1 &&
419             EVP_MD_type((const EVP_MD *)p2) != NID_sha224 &&
420             EVP_MD_type((const EVP_MD *)p2) != NID_sha256 &&
421             EVP_MD_type((const EVP_MD *)p2) != NID_sha384 &&
422             EVP_MD_type((const EVP_MD *)p2) != NID_sha512 &&
423             EVP_MD_type((const EVP_MD *)p2) != NID_sm3) {
424             ECerr(EC_F_PKEY_EC_CTRL, EC_R_INVALID_DIGEST_TYPE);
425             return 0;
426         }
427         dctx->md = p2;
428         return 1;
429
430     case EVP_PKEY_CTRL_GET_MD:
431         *(const EVP_MD **)p2 = dctx->md;
432         return 1;
433
434     case EVP_PKEY_CTRL_PEER_KEY:
435         /* Default behaviour is OK */
436     case EVP_PKEY_CTRL_DIGESTINIT:
437     case EVP_PKEY_CTRL_PKCS7_SIGN:
438     case EVP_PKEY_CTRL_CMS_SIGN:
439         return 1;
440
441     default:
442         return -2;
443
444     }
445 }
446
447 static int pkey_ec_ctrl_str(EVP_PKEY_CTX *ctx,
448                             const char *type, const char *value)
449 {
450     if (strcmp(type, "ec_paramgen_curve") == 0) {
451         int nid;
452         nid = EC_curve_nist2nid(value);
453         if (nid == NID_undef)
454             nid = OBJ_sn2nid(value);
455         if (nid == NID_undef)
456             nid = OBJ_ln2nid(value);
457         if (nid == NID_undef) {
458             ECerr(EC_F_PKEY_EC_CTRL_STR, EC_R_INVALID_CURVE);
459             return 0;
460         }
461         return EVP_PKEY_CTX_set_ec_paramgen_curve_nid(ctx, nid);
462     } else if (strcmp(type, "ec_param_enc") == 0) {
463         int param_enc;
464         if (strcmp(value, "explicit") == 0)
465             param_enc = 0;
466         else if (strcmp(value, "named_curve") == 0)
467             param_enc = OPENSSL_EC_NAMED_CURVE;
468         else
469             return -2;
470         return EVP_PKEY_CTX_set_ec_param_enc(ctx, param_enc);
471     } else if (strcmp(type, "ecdh_kdf_md") == 0) {
472         const EVP_MD *md;
473         if ((md = EVP_get_digestbyname(value)) == NULL) {
474             ECerr(EC_F_PKEY_EC_CTRL_STR, EC_R_INVALID_DIGEST);
475             return 0;
476         }
477         return EVP_PKEY_CTX_set_ecdh_kdf_md(ctx, md);
478     } else if (strcmp(type, "ecdh_cofactor_mode") == 0) {
479         int co_mode;
480         co_mode = atoi(value);
481         return EVP_PKEY_CTX_set_ecdh_cofactor_mode(ctx, co_mode);
482     }
483
484     return -2;
485 }
486
487 static int pkey_ec_paramgen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
488 {
489     EC_KEY *ec = NULL;
490     EC_PKEY_CTX *dctx = ctx->data;
491     int ret = 0;
492     if (dctx->gen_group == NULL) {
493         ECerr(EC_F_PKEY_EC_PARAMGEN, EC_R_NO_PARAMETERS_SET);
494         return 0;
495     }
496     ec = EC_KEY_new();
497     if (ec == NULL)
498         return 0;
499     ret = EC_KEY_set_group(ec, dctx->gen_group);
500     if (ret)
501         EVP_PKEY_assign_EC_KEY(pkey, ec);
502     else
503         EC_KEY_free(ec);
504     return ret;
505 }
506
507 static int pkey_ec_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
508 {
509     EC_KEY *ec = NULL;
510     EC_PKEY_CTX *dctx = ctx->data;
511     if (ctx->pkey == NULL && dctx->gen_group == NULL) {
512         ECerr(EC_F_PKEY_EC_KEYGEN, EC_R_NO_PARAMETERS_SET);
513         return 0;
514     }
515     ec = EC_KEY_new();
516     if (!ec)
517         return 0;
518     EVP_PKEY_assign_EC_KEY(pkey, ec);
519     if (ctx->pkey) {
520         /* Note: if error return, pkey is freed by parent routine */
521         if (!EVP_PKEY_copy_parameters(pkey, ctx->pkey))
522             return 0;
523     } else {
524         if (!EC_KEY_set_group(ec, dctx->gen_group))
525             return 0;
526     }
527     return EC_KEY_generate_key(pkey->pkey.ec);
528 }
529
530 const EVP_PKEY_METHOD ec_pkey_meth = {
531     EVP_PKEY_EC,
532     0,
533     pkey_ec_init,
534     pkey_ec_copy,
535     pkey_ec_cleanup,
536
537     0,
538     pkey_ec_paramgen,
539
540     0,
541     pkey_ec_keygen,
542
543     0,
544     pkey_ec_sign,
545
546     0,
547     pkey_ec_verify,
548
549     0, 0,
550
551     0, 0, 0, 0,
552
553     0,
554     pkey_ecies_encrypt,
555
556     0,
557     pkey_ecies_decrypt,
558
559     0,
560 #ifndef OPENSSL_NO_EC
561     pkey_ec_kdf_derive,
562 #else
563     0,
564 #endif
565     pkey_ec_ctrl,
566     pkey_ec_ctrl_str
567 };