14c08424558d66105dae5a90e98e1245889c86a1
[openssl.git] / crypto / dh / dh_ameth.c
1 /*
2  * Copyright 2006-2016 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  * DH 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 <openssl/x509.h>
19 #include <openssl/asn1.h>
20 #include "dh_local.h"
21 #include <openssl/bn.h>
22 #include "crypto/asn1.h"
23 #include "crypto/evp.h"
24 #include <openssl/cms.h>
25 #include <openssl/core_names.h>
26 #include "internal/param_build.h"
27
28 /*
29  * i2d/d2i like DH parameter functions which use the appropriate routine for
30  * PKCS#3 DH or X9.42 DH.
31  */
32
33 static DH *d2i_dhp(const EVP_PKEY *pkey, const unsigned char **pp,
34                    long length)
35 {
36     if (pkey->ameth == &dhx_asn1_meth)
37         return d2i_DHxparams(NULL, pp, length);
38     return d2i_DHparams(NULL, pp, length);
39 }
40
41 static int i2d_dhp(const EVP_PKEY *pkey, const DH *a, unsigned char **pp)
42 {
43     if (pkey->ameth == &dhx_asn1_meth)
44         return i2d_DHxparams(a, pp);
45     return i2d_DHparams(a, pp);
46 }
47
48 static void int_dh_free(EVP_PKEY *pkey)
49 {
50     DH_free(pkey->pkey.dh);
51 }
52
53 static int dh_pub_decode(EVP_PKEY *pkey, X509_PUBKEY *pubkey)
54 {
55     const unsigned char *p, *pm;
56     int pklen, pmlen;
57     int ptype;
58     const void *pval;
59     const ASN1_STRING *pstr;
60     X509_ALGOR *palg;
61     ASN1_INTEGER *public_key = NULL;
62
63     DH *dh = NULL;
64
65     if (!X509_PUBKEY_get0_param(NULL, &p, &pklen, &palg, pubkey))
66         return 0;
67     X509_ALGOR_get0(NULL, &ptype, &pval, palg);
68
69     if (ptype != V_ASN1_SEQUENCE) {
70         DHerr(DH_F_DH_PUB_DECODE, DH_R_PARAMETER_ENCODING_ERROR);
71         goto err;
72     }
73
74     pstr = pval;
75     pm = pstr->data;
76     pmlen = pstr->length;
77
78     if ((dh = d2i_dhp(pkey, &pm, pmlen)) == NULL) {
79         DHerr(DH_F_DH_PUB_DECODE, DH_R_DECODE_ERROR);
80         goto err;
81     }
82
83     if ((public_key = d2i_ASN1_INTEGER(NULL, &p, pklen)) == NULL) {
84         DHerr(DH_F_DH_PUB_DECODE, DH_R_DECODE_ERROR);
85         goto err;
86     }
87
88     /* We have parameters now set public key */
89     if ((dh->pub_key = ASN1_INTEGER_to_BN(public_key, NULL)) == NULL) {
90         DHerr(DH_F_DH_PUB_DECODE, DH_R_BN_DECODE_ERROR);
91         goto err;
92     }
93
94     ASN1_INTEGER_free(public_key);
95     EVP_PKEY_assign(pkey, pkey->ameth->pkey_id, dh);
96     return 1;
97
98  err:
99     ASN1_INTEGER_free(public_key);
100     DH_free(dh);
101     return 0;
102
103 }
104
105 static int dh_pub_encode(X509_PUBKEY *pk, const EVP_PKEY *pkey)
106 {
107     DH *dh;
108     int ptype;
109     unsigned char *penc = NULL;
110     int penclen;
111     ASN1_STRING *str;
112     ASN1_INTEGER *pub_key = NULL;
113
114     dh = pkey->pkey.dh;
115
116     str = ASN1_STRING_new();
117     if (str == NULL) {
118         DHerr(DH_F_DH_PUB_ENCODE, ERR_R_MALLOC_FAILURE);
119         goto err;
120     }
121     str->length = i2d_dhp(pkey, dh, &str->data);
122     if (str->length <= 0) {
123         DHerr(DH_F_DH_PUB_ENCODE, ERR_R_MALLOC_FAILURE);
124         goto err;
125     }
126     ptype = V_ASN1_SEQUENCE;
127
128     pub_key = BN_to_ASN1_INTEGER(dh->pub_key, NULL);
129     if (pub_key == NULL)
130         goto err;
131
132     penclen = i2d_ASN1_INTEGER(pub_key, &penc);
133
134     ASN1_INTEGER_free(pub_key);
135
136     if (penclen <= 0) {
137         DHerr(DH_F_DH_PUB_ENCODE, ERR_R_MALLOC_FAILURE);
138         goto err;
139     }
140
141     if (X509_PUBKEY_set0_param(pk, OBJ_nid2obj(pkey->ameth->pkey_id),
142                                ptype, str, penc, penclen))
143         return 1;
144
145  err:
146     OPENSSL_free(penc);
147     ASN1_STRING_free(str);
148
149     return 0;
150 }
151
152 /*
153  * PKCS#8 DH is defined in PKCS#11 of all places. It is similar to DH in that
154  * the AlgorithmIdentifier contains the parameters, the private key is
155  * explicitly included and the pubkey must be recalculated.
156  */
157
158 static int dh_priv_decode(EVP_PKEY *pkey, const PKCS8_PRIV_KEY_INFO *p8)
159 {
160     const unsigned char *p, *pm;
161     int pklen, pmlen;
162     int ptype;
163     const void *pval;
164     const ASN1_STRING *pstr;
165     const X509_ALGOR *palg;
166     ASN1_INTEGER *privkey = NULL;
167     DH *dh = NULL;
168
169     if (!PKCS8_pkey_get0(NULL, &p, &pklen, &palg, p8))
170         return 0;
171
172     X509_ALGOR_get0(NULL, &ptype, &pval, palg);
173
174     if (ptype != V_ASN1_SEQUENCE)
175         goto decerr;
176     if ((privkey = d2i_ASN1_INTEGER(NULL, &p, pklen)) == NULL)
177         goto decerr;
178
179     pstr = pval;
180     pm = pstr->data;
181     pmlen = pstr->length;
182     if ((dh = d2i_dhp(pkey, &pm, pmlen)) == NULL)
183         goto decerr;
184
185     /* We have parameters now set private key */
186     if ((dh->priv_key = BN_secure_new()) == NULL
187         || !ASN1_INTEGER_to_BN(privkey, dh->priv_key)) {
188         DHerr(DH_F_DH_PRIV_DECODE, DH_R_BN_ERROR);
189         goto dherr;
190     }
191     /* Calculate public key, increments dirty_cnt */
192     if (!DH_generate_key(dh))
193         goto dherr;
194
195     EVP_PKEY_assign(pkey, pkey->ameth->pkey_id, dh);
196
197     ASN1_STRING_clear_free(privkey);
198
199     return 1;
200
201  decerr:
202     DHerr(DH_F_DH_PRIV_DECODE, EVP_R_DECODE_ERROR);
203  dherr:
204     DH_free(dh);
205     ASN1_STRING_clear_free(privkey);
206     return 0;
207 }
208
209 static int dh_priv_encode(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pkey)
210 {
211     ASN1_STRING *params = NULL;
212     ASN1_INTEGER *prkey = NULL;
213     unsigned char *dp = NULL;
214     int dplen;
215
216     params = ASN1_STRING_new();
217
218     if (params == NULL) {
219         DHerr(DH_F_DH_PRIV_ENCODE, ERR_R_MALLOC_FAILURE);
220         goto err;
221     }
222
223     params->length = i2d_dhp(pkey, pkey->pkey.dh, &params->data);
224     if (params->length <= 0) {
225         DHerr(DH_F_DH_PRIV_ENCODE, ERR_R_MALLOC_FAILURE);
226         goto err;
227     }
228     params->type = V_ASN1_SEQUENCE;
229
230     /* Get private key into integer */
231     prkey = BN_to_ASN1_INTEGER(pkey->pkey.dh->priv_key, NULL);
232
233     if (prkey == NULL) {
234         DHerr(DH_F_DH_PRIV_ENCODE, DH_R_BN_ERROR);
235         goto err;
236     }
237
238     dplen = i2d_ASN1_INTEGER(prkey, &dp);
239
240     ASN1_STRING_clear_free(prkey);
241     prkey = NULL;
242
243     if (!PKCS8_pkey_set0(p8, OBJ_nid2obj(pkey->ameth->pkey_id), 0,
244                          V_ASN1_SEQUENCE, params, dp, dplen))
245         goto err;
246
247     return 1;
248
249  err:
250     OPENSSL_free(dp);
251     ASN1_STRING_free(params);
252     ASN1_STRING_clear_free(prkey);
253     return 0;
254 }
255
256 static int dh_param_decode(EVP_PKEY *pkey,
257                            const unsigned char **pder, int derlen)
258 {
259     DH *dh;
260
261     if ((dh = d2i_dhp(pkey, pder, derlen)) == NULL) {
262         DHerr(DH_F_DH_PARAM_DECODE, ERR_R_DH_LIB);
263         return 0;
264     }
265     dh->dirty_cnt++;
266     EVP_PKEY_assign(pkey, pkey->ameth->pkey_id, dh);
267     return 1;
268 }
269
270 static int dh_param_encode(const EVP_PKEY *pkey, unsigned char **pder)
271 {
272     return i2d_dhp(pkey, pkey->pkey.dh, pder);
273 }
274
275 static int do_dh_print(BIO *bp, const DH *x, int indent, int ptype)
276 {
277     int reason = ERR_R_BUF_LIB;
278     const char *ktype = NULL;
279     BIGNUM *priv_key, *pub_key;
280
281     if (ptype == 2)
282         priv_key = x->priv_key;
283     else
284         priv_key = NULL;
285
286     if (ptype > 0)
287         pub_key = x->pub_key;
288     else
289         pub_key = NULL;
290
291     if (x->params.p == NULL || (ptype == 2 && priv_key == NULL)
292             || (ptype > 0 && pub_key == NULL)) {
293         reason = ERR_R_PASSED_NULL_PARAMETER;
294         goto err;
295     }
296
297     if (ptype == 2)
298         ktype = "DH Private-Key";
299     else if (ptype == 1)
300         ktype = "DH Public-Key";
301     else
302         ktype = "DH Parameters";
303
304     if (!BIO_indent(bp, indent, 128)
305             || BIO_printf(bp, "%s: (%d bit)\n", ktype, DH_bits(x)) <= 0)
306         goto err;
307     indent += 4;
308
309     if (!ASN1_bn_print(bp, "private-key:", priv_key, NULL, indent))
310         goto err;
311     if (!ASN1_bn_print(bp, "public-key:", pub_key, NULL, indent))
312         goto err;
313
314     if (!ffc_params_print(bp, &x->params, indent))
315         goto err;
316
317     if (x->length != 0) {
318         if (!BIO_indent(bp, indent, 128)
319                 || BIO_printf(bp, "recommended-private-length: %d bits\n",
320                               (int)x->length) <= 0)
321             goto err;
322     }
323
324     return 1;
325
326  err:
327     DHerr(DH_F_DO_DH_PRINT, reason);
328     return 0;
329 }
330
331 static int int_dh_size(const EVP_PKEY *pkey)
332 {
333     return DH_size(pkey->pkey.dh);
334 }
335
336 static int dh_bits(const EVP_PKEY *pkey)
337 {
338     return DH_bits(pkey->pkey.dh);
339 }
340
341 static int dh_security_bits(const EVP_PKEY *pkey)
342 {
343     return DH_security_bits(pkey->pkey.dh);
344 }
345
346 static int dh_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
347 {
348     return ffc_params_cmp(&a->pkey.dh->params, &a->pkey.dh->params,
349                           a->ameth != &dhx_asn1_meth);
350 }
351
352 static int int_dh_param_copy(DH *to, const DH *from, int is_x942)
353 {
354     if (is_x942 == -1)
355         is_x942 = (from->params.q != NULL);
356     if (!ffc_params_copy(&to->params, &from->params))
357         return 0;
358     if (!is_x942)
359         to->length = from->length;
360     to->dirty_cnt++;
361     return 1;
362 }
363
364 DH *DHparams_dup(const DH *dh)
365 {
366     DH *ret;
367     ret = DH_new();
368     if (ret == NULL)
369         return NULL;
370     if (!int_dh_param_copy(ret, dh, -1)) {
371         DH_free(ret);
372         return NULL;
373     }
374     return ret;
375 }
376
377 static int dh_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from)
378 {
379     if (to->pkey.dh == NULL) {
380         to->pkey.dh = DH_new();
381         if (to->pkey.dh == NULL)
382             return 0;
383     }
384     return int_dh_param_copy(to->pkey.dh, from->pkey.dh,
385                              from->ameth == &dhx_asn1_meth);
386 }
387
388 static int dh_missing_parameters(const EVP_PKEY *a)
389 {
390     return a->pkey.dh == NULL
391         || a->pkey.dh->params.p == NULL
392         || a->pkey.dh->params.g == NULL;
393 }
394
395 static int dh_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
396 {
397     if (dh_cmp_parameters(a, b) == 0)
398         return 0;
399     if (BN_cmp(b->pkey.dh->pub_key, a->pkey.dh->pub_key) != 0)
400         return 0;
401     else
402         return 1;
403 }
404
405 static int dh_param_print(BIO *bp, const EVP_PKEY *pkey, int indent,
406                           ASN1_PCTX *ctx)
407 {
408     return do_dh_print(bp, pkey->pkey.dh, indent, 0);
409 }
410
411 static int dh_public_print(BIO *bp, const EVP_PKEY *pkey, int indent,
412                            ASN1_PCTX *ctx)
413 {
414     return do_dh_print(bp, pkey->pkey.dh, indent, 1);
415 }
416
417 static int dh_private_print(BIO *bp, const EVP_PKEY *pkey, int indent,
418                             ASN1_PCTX *ctx)
419 {
420     return do_dh_print(bp, pkey->pkey.dh, indent, 2);
421 }
422
423 int DHparams_print(BIO *bp, const DH *x)
424 {
425     return do_dh_print(bp, x, 4, 0);
426 }
427
428 #ifndef OPENSSL_NO_CMS
429 static int dh_cms_decrypt(CMS_RecipientInfo *ri);
430 static int dh_cms_encrypt(CMS_RecipientInfo *ri);
431 #endif
432
433 static int dh_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2)
434 {
435     switch (op) {
436     case ASN1_PKEY_CTRL_SET1_TLS_ENCPT:
437         return dh_buf2key(EVP_PKEY_get0_DH(pkey), arg2, arg1);
438     case ASN1_PKEY_CTRL_GET1_TLS_ENCPT:
439         return dh_key2buf(EVP_PKEY_get0_DH(pkey), arg2);
440     default:
441         return -2;
442     }
443 }
444
445 static int dhx_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2)
446 {
447     switch (op) {
448 #ifndef OPENSSL_NO_CMS
449
450     case ASN1_PKEY_CTRL_CMS_ENVELOPE:
451         if (arg1 == 1)
452             return dh_cms_decrypt(arg2);
453         else if (arg1 == 0)
454             return dh_cms_encrypt(arg2);
455         return -2;
456
457     case ASN1_PKEY_CTRL_CMS_RI_TYPE:
458         *(int *)arg2 = CMS_RECIPINFO_AGREE;
459         return 1;
460 #endif
461     default:
462         return -2;
463     }
464
465 }
466
467 static int dh_pkey_public_check(const EVP_PKEY *pkey)
468 {
469     DH *dh = pkey->pkey.dh;
470
471     if (dh->pub_key == NULL) {
472         DHerr(DH_F_DH_PKEY_PUBLIC_CHECK, DH_R_MISSING_PUBKEY);
473         return 0;
474     }
475
476     return DH_check_pub_key_ex(dh, dh->pub_key);
477 }
478
479 static int dh_pkey_param_check(const EVP_PKEY *pkey)
480 {
481     DH *dh = pkey->pkey.dh;
482
483     return DH_check_ex(dh);
484 }
485
486 static size_t dh_pkey_dirty_cnt(const EVP_PKEY *pkey)
487 {
488     return pkey->pkey.dh->dirty_cnt;
489 }
490
491 static int dh_pkey_export_to(const EVP_PKEY *from, void *to_keydata,
492                              EVP_KEYMGMT *to_keymgmt)
493 {
494     DH *dh = from->pkey.dh;
495     OSSL_PARAM_BLD tmpl;
496     const BIGNUM *p = DH_get0_p(dh), *g = DH_get0_g(dh), *q = DH_get0_q(dh);
497     const BIGNUM *pub_key = DH_get0_pub_key(dh);
498     const BIGNUM *priv_key = DH_get0_priv_key(dh);
499     OSSL_PARAM *params;
500     int rv;
501
502     if (p == NULL || g == NULL)
503         return 0;
504
505     ossl_param_bld_init(&tmpl);
506     if (!ossl_param_bld_push_BN(&tmpl, OSSL_PKEY_PARAM_FFC_P, p)
507         || !ossl_param_bld_push_BN(&tmpl, OSSL_PKEY_PARAM_FFC_G, g))
508         return 0;
509     if (q != NULL) {
510         if (!ossl_param_bld_push_BN(&tmpl, OSSL_PKEY_PARAM_FFC_Q, q))
511             return 0;
512     }
513     /* A key must at least have a public part. */
514     if (!ossl_param_bld_push_BN(&tmpl, OSSL_PKEY_PARAM_PUB_KEY, pub_key))
515         return 0;
516     if (priv_key != NULL) {
517         if (!ossl_param_bld_push_BN(&tmpl, OSSL_PKEY_PARAM_PRIV_KEY,
518                                     priv_key))
519             return 0;
520     }
521
522     if ((params = ossl_param_bld_to_param(&tmpl)) == NULL)
523         return 0;
524
525     /* We export, the provider imports */
526     rv = evp_keymgmt_import(to_keymgmt, to_keydata, OSSL_KEYMGMT_SELECT_ALL,
527                             params);
528
529     ossl_param_bld_free(params);
530
531     return rv;
532 }
533
534 const EVP_PKEY_ASN1_METHOD dh_asn1_meth = {
535     EVP_PKEY_DH,
536     EVP_PKEY_DH,
537     0,
538
539     "DH",
540     "OpenSSL PKCS#3 DH method",
541
542     dh_pub_decode,
543     dh_pub_encode,
544     dh_pub_cmp,
545     dh_public_print,
546
547     dh_priv_decode,
548     dh_priv_encode,
549     dh_private_print,
550
551     int_dh_size,
552     dh_bits,
553     dh_security_bits,
554
555     dh_param_decode,
556     dh_param_encode,
557     dh_missing_parameters,
558     dh_copy_parameters,
559     dh_cmp_parameters,
560     dh_param_print,
561     0,
562
563     int_dh_free,
564     dh_pkey_ctrl,
565
566     0, 0, 0, 0, 0,
567
568     0,
569     dh_pkey_public_check,
570     dh_pkey_param_check,
571
572     0, 0, 0, 0,
573
574     dh_pkey_dirty_cnt,
575     dh_pkey_export_to,
576 };
577
578 const EVP_PKEY_ASN1_METHOD dhx_asn1_meth = {
579     EVP_PKEY_DHX,
580     EVP_PKEY_DHX,
581     0,
582
583     "X9.42 DH",
584     "OpenSSL X9.42 DH method",
585
586     dh_pub_decode,
587     dh_pub_encode,
588     dh_pub_cmp,
589     dh_public_print,
590
591     dh_priv_decode,
592     dh_priv_encode,
593     dh_private_print,
594
595     int_dh_size,
596     dh_bits,
597     dh_security_bits,
598
599     dh_param_decode,
600     dh_param_encode,
601     dh_missing_parameters,
602     dh_copy_parameters,
603     dh_cmp_parameters,
604     dh_param_print,
605     0,
606
607     int_dh_free,
608     dhx_pkey_ctrl,
609
610     0, 0, 0, 0, 0,
611
612     0,
613     dh_pkey_public_check,
614     dh_pkey_param_check
615 };
616
617 #ifndef OPENSSL_NO_CMS
618
619 static int dh_cms_set_peerkey(EVP_PKEY_CTX *pctx,
620                               X509_ALGOR *alg, ASN1_BIT_STRING *pubkey)
621 {
622     const ASN1_OBJECT *aoid;
623     int atype;
624     const void *aval;
625     ASN1_INTEGER *public_key = NULL;
626     int rv = 0;
627     EVP_PKEY *pkpeer = NULL, *pk = NULL;
628     DH *dhpeer = NULL;
629     const unsigned char *p;
630     int plen;
631
632     X509_ALGOR_get0(&aoid, &atype, &aval, alg);
633     if (OBJ_obj2nid(aoid) != NID_dhpublicnumber)
634         goto err;
635     /* Only absent parameters allowed in RFC XXXX */
636     if (atype != V_ASN1_UNDEF && atype == V_ASN1_NULL)
637         goto err;
638
639     pk = EVP_PKEY_CTX_get0_pkey(pctx);
640     if (pk == NULL)
641         goto err;
642     if (pk->type != EVP_PKEY_DHX)
643         goto err;
644     /* Get parameters from parent key */
645     dhpeer = DHparams_dup(pk->pkey.dh);
646     /* We have parameters now set public key */
647     plen = ASN1_STRING_length(pubkey);
648     p = ASN1_STRING_get0_data(pubkey);
649     if (p == NULL || plen == 0)
650         goto err;
651
652     if ((public_key = d2i_ASN1_INTEGER(NULL, &p, plen)) == NULL) {
653         DHerr(DH_F_DH_CMS_SET_PEERKEY, DH_R_DECODE_ERROR);
654         goto err;
655     }
656
657     /* We have parameters now set public key */
658     if ((dhpeer->pub_key = ASN1_INTEGER_to_BN(public_key, NULL)) == NULL) {
659         DHerr(DH_F_DH_CMS_SET_PEERKEY, DH_R_BN_DECODE_ERROR);
660         goto err;
661     }
662
663     pkpeer = EVP_PKEY_new();
664     if (pkpeer == NULL)
665         goto err;
666     EVP_PKEY_assign(pkpeer, pk->ameth->pkey_id, dhpeer);
667     dhpeer = NULL;
668     if (EVP_PKEY_derive_set_peer(pctx, pkpeer) > 0)
669         rv = 1;
670  err:
671     ASN1_INTEGER_free(public_key);
672     EVP_PKEY_free(pkpeer);
673     DH_free(dhpeer);
674     return rv;
675 }
676
677 static int dh_cms_set_shared_info(EVP_PKEY_CTX *pctx, CMS_RecipientInfo *ri)
678 {
679     int rv = 0;
680
681     X509_ALGOR *alg, *kekalg = NULL;
682     ASN1_OCTET_STRING *ukm;
683     const unsigned char *p;
684     unsigned char *dukm = NULL;
685     size_t dukmlen = 0;
686     int keylen, plen;
687     const EVP_CIPHER *kekcipher;
688     EVP_CIPHER_CTX *kekctx;
689
690     if (!CMS_RecipientInfo_kari_get0_alg(ri, &alg, &ukm))
691         goto err;
692
693     /*
694      * For DH we only have one OID permissible. If ever any more get defined
695      * we will need something cleverer.
696      */
697     if (OBJ_obj2nid(alg->algorithm) != NID_id_smime_alg_ESDH) {
698         DHerr(DH_F_DH_CMS_SET_SHARED_INFO, DH_R_KDF_PARAMETER_ERROR);
699         goto err;
700     }
701
702     if (EVP_PKEY_CTX_set_dh_kdf_type(pctx, EVP_PKEY_DH_KDF_X9_42) <= 0)
703         goto err;
704
705     if (EVP_PKEY_CTX_set_dh_kdf_md(pctx, EVP_sha1()) <= 0)
706         goto err;
707
708     if (alg->parameter->type != V_ASN1_SEQUENCE)
709         goto err;
710
711     p = alg->parameter->value.sequence->data;
712     plen = alg->parameter->value.sequence->length;
713     kekalg = d2i_X509_ALGOR(NULL, &p, plen);
714     if (!kekalg)
715         goto err;
716     kekctx = CMS_RecipientInfo_kari_get0_ctx(ri);
717     if (!kekctx)
718         goto err;
719     kekcipher = EVP_get_cipherbyobj(kekalg->algorithm);
720     if (!kekcipher || EVP_CIPHER_mode(kekcipher) != EVP_CIPH_WRAP_MODE)
721         goto err;
722     if (!EVP_EncryptInit_ex(kekctx, kekcipher, NULL, NULL, NULL))
723         goto err;
724     if (EVP_CIPHER_asn1_to_param(kekctx, kekalg->parameter) <= 0)
725         goto err;
726
727     keylen = EVP_CIPHER_CTX_key_length(kekctx);
728     if (EVP_PKEY_CTX_set_dh_kdf_outlen(pctx, keylen) <= 0)
729         goto err;
730     /* Use OBJ_nid2obj to ensure we use built in OID that isn't freed */
731     if (EVP_PKEY_CTX_set0_dh_kdf_oid(pctx,
732                                      OBJ_nid2obj(EVP_CIPHER_type(kekcipher)))
733         <= 0)
734         goto err;
735
736     if (ukm) {
737         dukmlen = ASN1_STRING_length(ukm);
738         dukm = OPENSSL_memdup(ASN1_STRING_get0_data(ukm), dukmlen);
739         if (!dukm)
740             goto err;
741     }
742
743     if (EVP_PKEY_CTX_set0_dh_kdf_ukm(pctx, dukm, dukmlen) <= 0)
744         goto err;
745     dukm = NULL;
746
747     rv = 1;
748  err:
749     X509_ALGOR_free(kekalg);
750     OPENSSL_free(dukm);
751     return rv;
752 }
753
754 static int dh_cms_decrypt(CMS_RecipientInfo *ri)
755 {
756     EVP_PKEY_CTX *pctx;
757
758     pctx = CMS_RecipientInfo_get0_pkey_ctx(ri);
759
760     if (pctx == NULL)
761         return 0;
762     /* See if we need to set peer key */
763     if (!EVP_PKEY_CTX_get0_peerkey(pctx)) {
764         X509_ALGOR *alg;
765         ASN1_BIT_STRING *pubkey;
766         if (!CMS_RecipientInfo_kari_get0_orig_id(ri, &alg, &pubkey,
767                                                  NULL, NULL, NULL))
768             return 0;
769         if (!alg || !pubkey)
770             return 0;
771         if (!dh_cms_set_peerkey(pctx, alg, pubkey)) {
772             DHerr(DH_F_DH_CMS_DECRYPT, DH_R_PEER_KEY_ERROR);
773             return 0;
774         }
775     }
776     /* Set DH derivation parameters and initialise unwrap context */
777     if (!dh_cms_set_shared_info(pctx, ri)) {
778         DHerr(DH_F_DH_CMS_DECRYPT, DH_R_SHARED_INFO_ERROR);
779         return 0;
780     }
781     return 1;
782 }
783
784 static int dh_cms_encrypt(CMS_RecipientInfo *ri)
785 {
786     EVP_PKEY_CTX *pctx;
787     EVP_PKEY *pkey;
788     EVP_CIPHER_CTX *ctx;
789     int keylen;
790     X509_ALGOR *talg, *wrap_alg = NULL;
791     const ASN1_OBJECT *aoid;
792     ASN1_BIT_STRING *pubkey;
793     ASN1_STRING *wrap_str;
794     ASN1_OCTET_STRING *ukm;
795     unsigned char *penc = NULL, *dukm = NULL;
796     int penclen;
797     size_t dukmlen = 0;
798     int rv = 0;
799     int kdf_type, wrap_nid;
800     const EVP_MD *kdf_md;
801
802     pctx = CMS_RecipientInfo_get0_pkey_ctx(ri);
803     if (pctx == NULL)
804         return 0;
805     /* Get ephemeral key */
806     pkey = EVP_PKEY_CTX_get0_pkey(pctx);
807     if (!CMS_RecipientInfo_kari_get0_orig_id(ri, &talg, &pubkey,
808                                              NULL, NULL, NULL))
809         goto err;
810     X509_ALGOR_get0(&aoid, NULL, NULL, talg);
811     /* Is everything uninitialised? */
812     if (aoid == OBJ_nid2obj(NID_undef)) {
813         ASN1_INTEGER *pubk = BN_to_ASN1_INTEGER(pkey->pkey.dh->pub_key, NULL);
814
815         if (pubk == NULL)
816             goto err;
817         /* Set the key */
818
819         penclen = i2d_ASN1_INTEGER(pubk, &penc);
820         ASN1_INTEGER_free(pubk);
821         if (penclen <= 0)
822             goto err;
823         ASN1_STRING_set0(pubkey, penc, penclen);
824         pubkey->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT | 0x07);
825         pubkey->flags |= ASN1_STRING_FLAG_BITS_LEFT;
826
827         penc = NULL;
828         X509_ALGOR_set0(talg, OBJ_nid2obj(NID_dhpublicnumber),
829                         V_ASN1_UNDEF, NULL);
830     }
831
832     /* See if custom parameters set */
833     kdf_type = EVP_PKEY_CTX_get_dh_kdf_type(pctx);
834     if (kdf_type <= 0)
835         goto err;
836     if (!EVP_PKEY_CTX_get_dh_kdf_md(pctx, &kdf_md))
837         goto err;
838
839     if (kdf_type == EVP_PKEY_DH_KDF_NONE) {
840         kdf_type = EVP_PKEY_DH_KDF_X9_42;
841         if (EVP_PKEY_CTX_set_dh_kdf_type(pctx, kdf_type) <= 0)
842             goto err;
843     } else if (kdf_type != EVP_PKEY_DH_KDF_X9_42)
844         /* Unknown KDF */
845         goto err;
846     if (kdf_md == NULL) {
847         /* Only SHA1 supported */
848         kdf_md = EVP_sha1();
849         if (EVP_PKEY_CTX_set_dh_kdf_md(pctx, kdf_md) <= 0)
850             goto err;
851     } else if (EVP_MD_type(kdf_md) != NID_sha1)
852         /* Unsupported digest */
853         goto err;
854
855     if (!CMS_RecipientInfo_kari_get0_alg(ri, &talg, &ukm))
856         goto err;
857
858     /* Get wrap NID */
859     ctx = CMS_RecipientInfo_kari_get0_ctx(ri);
860     wrap_nid = EVP_CIPHER_CTX_type(ctx);
861     if (EVP_PKEY_CTX_set0_dh_kdf_oid(pctx, OBJ_nid2obj(wrap_nid)) <= 0)
862         goto err;
863     keylen = EVP_CIPHER_CTX_key_length(ctx);
864
865     /* Package wrap algorithm in an AlgorithmIdentifier */
866
867     wrap_alg = X509_ALGOR_new();
868     if (wrap_alg == NULL)
869         goto err;
870     wrap_alg->algorithm = OBJ_nid2obj(wrap_nid);
871     wrap_alg->parameter = ASN1_TYPE_new();
872     if (wrap_alg->parameter == NULL)
873         goto err;
874     if (EVP_CIPHER_param_to_asn1(ctx, wrap_alg->parameter) <= 0)
875         goto err;
876     if (ASN1_TYPE_get(wrap_alg->parameter) == NID_undef) {
877         ASN1_TYPE_free(wrap_alg->parameter);
878         wrap_alg->parameter = NULL;
879     }
880
881     if (EVP_PKEY_CTX_set_dh_kdf_outlen(pctx, keylen) <= 0)
882         goto err;
883
884     if (ukm) {
885         dukmlen = ASN1_STRING_length(ukm);
886         dukm = OPENSSL_memdup(ASN1_STRING_get0_data(ukm), dukmlen);
887         if (!dukm)
888             goto err;
889     }
890
891     if (EVP_PKEY_CTX_set0_dh_kdf_ukm(pctx, dukm, dukmlen) <= 0)
892         goto err;
893     dukm = NULL;
894
895     /*
896      * Now need to wrap encoding of wrap AlgorithmIdentifier into parameter
897      * of another AlgorithmIdentifier.
898      */
899     penc = NULL;
900     penclen = i2d_X509_ALGOR(wrap_alg, &penc);
901     if (penc == NULL || penclen == 0)
902         goto err;
903     wrap_str = ASN1_STRING_new();
904     if (wrap_str == NULL)
905         goto err;
906     ASN1_STRING_set0(wrap_str, penc, penclen);
907     penc = NULL;
908     X509_ALGOR_set0(talg, OBJ_nid2obj(NID_id_smime_alg_ESDH),
909                     V_ASN1_SEQUENCE, wrap_str);
910
911     rv = 1;
912
913  err:
914     OPENSSL_free(penc);
915     X509_ALGOR_free(wrap_alg);
916     OPENSSL_free(dukm);
917     return rv;
918 }
919
920 #endif