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