Run util/openssl-format-source -v -c .
[openssl.git] / crypto / dh / dh_ameth.c
1 /*
2  * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
3  * 2006.
4  */
5 /* ====================================================================
6  * Copyright (c) 2006 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    licensing@OpenSSL.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  *
53  * This product includes cryptographic software written by Eric Young
54  * (eay@cryptsoft.com).  This product includes software written by Tim
55  * Hudson (tjh@cryptsoft.com).
56  *
57  */
58
59 #include <stdio.h>
60 #include "cryptlib.h"
61 #include <openssl/x509.h>
62 #include <openssl/asn1.h>
63 #include <openssl/dh.h>
64 #include <openssl/bn.h>
65 #include "asn1_locl.h"
66
67 static void int_dh_free(EVP_PKEY *pkey)
68 {
69     DH_free(pkey->pkey.dh);
70 }
71
72 static int dh_pub_decode(EVP_PKEY *pkey, X509_PUBKEY *pubkey)
73 {
74     const unsigned char *p, *pm;
75     int pklen, pmlen;
76     int ptype;
77     void *pval;
78     ASN1_STRING *pstr;
79     X509_ALGOR *palg;
80     ASN1_INTEGER *public_key = NULL;
81
82     DH *dh = NULL;
83
84     if (!X509_PUBKEY_get0_param(NULL, &p, &pklen, &palg, pubkey))
85         return 0;
86     X509_ALGOR_get0(NULL, &ptype, &pval, palg);
87
88     if (ptype != V_ASN1_SEQUENCE) {
89         DHerr(DH_F_DH_PUB_DECODE, DH_R_PARAMETER_ENCODING_ERROR);
90         goto err;
91     }
92
93     pstr = pval;
94     pm = pstr->data;
95     pmlen = pstr->length;
96
97     if (!(dh = d2i_DHparams(NULL, &pm, pmlen))) {
98         DHerr(DH_F_DH_PUB_DECODE, DH_R_DECODE_ERROR);
99         goto err;
100     }
101
102     if (!(public_key = d2i_ASN1_INTEGER(NULL, &p, pklen))) {
103         DHerr(DH_F_DH_PUB_DECODE, DH_R_DECODE_ERROR);
104         goto err;
105     }
106
107     /* We have parameters now set public key */
108     if (!(dh->pub_key = ASN1_INTEGER_to_BN(public_key, NULL))) {
109         DHerr(DH_F_DH_PUB_DECODE, DH_R_BN_DECODE_ERROR);
110         goto err;
111     }
112
113     ASN1_INTEGER_free(public_key);
114     EVP_PKEY_assign_DH(pkey, dh);
115     return 1;
116
117  err:
118     if (public_key)
119         ASN1_INTEGER_free(public_key);
120     if (dh)
121         DH_free(dh);
122     return 0;
123
124 }
125
126 static int dh_pub_encode(X509_PUBKEY *pk, const EVP_PKEY *pkey)
127 {
128     DH *dh;
129     void *pval = NULL;
130     int ptype;
131     unsigned char *penc = NULL;
132     int penclen;
133     ASN1_STRING *str;
134     ASN1_INTEGER *pub_key = NULL;
135
136     dh = pkey->pkey.dh;
137
138     str = ASN1_STRING_new();
139     str->length = i2d_DHparams(dh, &str->data);
140     if (str->length <= 0) {
141         DHerr(DH_F_DH_PUB_ENCODE, ERR_R_MALLOC_FAILURE);
142         goto err;
143     }
144     pval = str;
145     ptype = V_ASN1_SEQUENCE;
146
147     pub_key = BN_to_ASN1_INTEGER(dh->pub_key, NULL);
148     if (!pub_key)
149         goto err;
150
151     penclen = i2d_ASN1_INTEGER(pub_key, &penc);
152
153     ASN1_INTEGER_free(pub_key);
154
155     if (penclen <= 0) {
156         DHerr(DH_F_DH_PUB_ENCODE, ERR_R_MALLOC_FAILURE);
157         goto err;
158     }
159
160     if (X509_PUBKEY_set0_param(pk, OBJ_nid2obj(EVP_PKEY_DH),
161                                ptype, pval, penc, penclen))
162         return 1;
163
164  err:
165     if (penc)
166         OPENSSL_free(penc);
167     if (pval)
168         ASN1_STRING_free(pval);
169
170     return 0;
171 }
172
173 /*
174  * PKCS#8 DH is defined in PKCS#11 of all places. It is similar to DH in that
175  * the AlgorithmIdentifier contains the paramaters, the private key is
176  * explcitly included and the pubkey must be recalculated.
177  */
178
179 static int dh_priv_decode(EVP_PKEY *pkey, PKCS8_PRIV_KEY_INFO *p8)
180 {
181     const unsigned char *p, *pm;
182     int pklen, pmlen;
183     int ptype;
184     void *pval;
185     ASN1_STRING *pstr;
186     X509_ALGOR *palg;
187     ASN1_INTEGER *privkey = NULL;
188
189     DH *dh = NULL;
190
191     if (!PKCS8_pkey_get0(NULL, &p, &pklen, &palg, p8))
192         return 0;
193
194     X509_ALGOR_get0(NULL, &ptype, &pval, palg);
195
196     if (ptype != V_ASN1_SEQUENCE)
197         goto decerr;
198
199     if (!(privkey = d2i_ASN1_INTEGER(NULL, &p, pklen)))
200         goto decerr;
201
202     pstr = pval;
203     pm = pstr->data;
204     pmlen = pstr->length;
205     if (!(dh = d2i_DHparams(NULL, &pm, pmlen)))
206         goto decerr;
207     /* We have parameters now set private key */
208     if (!(dh->priv_key = ASN1_INTEGER_to_BN(privkey, NULL))) {
209         DHerr(DH_F_DH_PRIV_DECODE, DH_R_BN_ERROR);
210         goto dherr;
211     }
212     /* Calculate public key */
213     if (!DH_generate_key(dh))
214         goto dherr;
215
216     EVP_PKEY_assign_DH(pkey, dh);
217
218     ASN1_INTEGER_free(privkey);
219
220     return 1;
221
222  decerr:
223     DHerr(DH_F_DH_PRIV_DECODE, EVP_R_DECODE_ERROR);
224  dherr:
225     DH_free(dh);
226     return 0;
227 }
228
229 static int dh_priv_encode(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pkey)
230 {
231     ASN1_STRING *params = NULL;
232     ASN1_INTEGER *prkey = NULL;
233     unsigned char *dp = NULL;
234     int dplen;
235
236     params = ASN1_STRING_new();
237
238     if (!params) {
239         DHerr(DH_F_DH_PRIV_ENCODE, ERR_R_MALLOC_FAILURE);
240         goto err;
241     }
242
243     params->length = i2d_DHparams(pkey->pkey.dh, &params->data);
244     if (params->length <= 0) {
245         DHerr(DH_F_DH_PRIV_ENCODE, ERR_R_MALLOC_FAILURE);
246         goto err;
247     }
248     params->type = V_ASN1_SEQUENCE;
249
250     /* Get private key into integer */
251     prkey = BN_to_ASN1_INTEGER(pkey->pkey.dh->priv_key, NULL);
252
253     if (!prkey) {
254         DHerr(DH_F_DH_PRIV_ENCODE, DH_R_BN_ERROR);
255         goto err;
256     }
257
258     dplen = i2d_ASN1_INTEGER(prkey, &dp);
259
260     ASN1_INTEGER_free(prkey);
261
262     if (!PKCS8_pkey_set0(p8, OBJ_nid2obj(NID_dhKeyAgreement), 0,
263                          V_ASN1_SEQUENCE, params, dp, dplen))
264         goto err;
265
266     return 1;
267
268  err:
269     if (dp != NULL)
270         OPENSSL_free(dp);
271     if (params != NULL)
272         ASN1_STRING_free(params);
273     if (prkey != NULL)
274         ASN1_INTEGER_free(prkey);
275     return 0;
276 }
277
278 static void update_buflen(const BIGNUM *b, size_t *pbuflen)
279 {
280     size_t i;
281     if (!b)
282         return;
283     if (*pbuflen < (i = (size_t)BN_num_bytes(b)))
284         *pbuflen = i;
285 }
286
287 static int dh_param_decode(EVP_PKEY *pkey,
288                            const unsigned char **pder, int derlen)
289 {
290     DH *dh;
291     if (!(dh = d2i_DHparams(NULL, pder, derlen))) {
292         DHerr(DH_F_DH_PARAM_DECODE, ERR_R_DH_LIB);
293         return 0;
294     }
295     EVP_PKEY_assign_DH(pkey, dh);
296     return 1;
297 }
298
299 static int dh_param_encode(const EVP_PKEY *pkey, unsigned char **pder)
300 {
301     return i2d_DHparams(pkey->pkey.dh, pder);
302 }
303
304 static int do_dh_print(BIO *bp, const DH *x, int indent,
305                        ASN1_PCTX *ctx, int ptype)
306 {
307     unsigned char *m = NULL;
308     int reason = ERR_R_BUF_LIB, ret = 0;
309     size_t buf_len = 0;
310
311     const char *ktype = NULL;
312
313     BIGNUM *priv_key, *pub_key;
314
315     if (ptype == 2)
316         priv_key = x->priv_key;
317     else
318         priv_key = NULL;
319
320     if (ptype > 0)
321         pub_key = x->pub_key;
322     else
323         pub_key = NULL;
324
325     update_buflen(x->p, &buf_len);
326
327     if (buf_len == 0) {
328         reason = ERR_R_PASSED_NULL_PARAMETER;
329         goto err;
330     }
331
332     update_buflen(x->g, &buf_len);
333     update_buflen(pub_key, &buf_len);
334     update_buflen(priv_key, &buf_len);
335
336     if (ptype == 2)
337         ktype = "PKCS#3 DH Private-Key";
338     else if (ptype == 1)
339         ktype = "PKCS#3 DH Public-Key";
340     else
341         ktype = "PKCS#3 DH Parameters";
342
343     m = OPENSSL_malloc(buf_len + 10);
344     if (m == NULL) {
345         reason = ERR_R_MALLOC_FAILURE;
346         goto err;
347     }
348
349     BIO_indent(bp, indent, 128);
350     if (BIO_printf(bp, "%s: (%d bit)\n", ktype, BN_num_bits(x->p)) <= 0)
351         goto err;
352     indent += 4;
353
354     if (!ASN1_bn_print(bp, "private-key:", priv_key, m, indent))
355         goto err;
356     if (!ASN1_bn_print(bp, "public-key:", pub_key, m, indent))
357         goto err;
358
359     if (!ASN1_bn_print(bp, "prime:", x->p, m, indent))
360         goto err;
361     if (!ASN1_bn_print(bp, "generator:", x->g, m, indent))
362         goto err;
363     if (x->length != 0) {
364         BIO_indent(bp, indent, 128);
365         if (BIO_printf(bp, "recommended-private-length: %d bits\n",
366                        (int)x->length) <= 0)
367             goto err;
368     }
369
370     ret = 1;
371     if (0) {
372  err:
373         DHerr(DH_F_DO_DH_PRINT, reason);
374     }
375     if (m != NULL)
376         OPENSSL_free(m);
377     return (ret);
378 }
379
380 static int int_dh_size(const EVP_PKEY *pkey)
381 {
382     return (DH_size(pkey->pkey.dh));
383 }
384
385 static int dh_bits(const EVP_PKEY *pkey)
386 {
387     return BN_num_bits(pkey->pkey.dh->p);
388 }
389
390 static int dh_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
391 {
392     if (BN_cmp(a->pkey.dh->p, b->pkey.dh->p) ||
393         BN_cmp(a->pkey.dh->g, b->pkey.dh->g))
394         return 0;
395     else
396         return 1;
397 }
398
399 static int dh_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from)
400 {
401     BIGNUM *a;
402
403     if ((a = BN_dup(from->pkey.dh->p)) == NULL)
404         return 0;
405     if (to->pkey.dh->p != NULL)
406         BN_free(to->pkey.dh->p);
407     to->pkey.dh->p = a;
408
409     if ((a = BN_dup(from->pkey.dh->g)) == NULL)
410         return 0;
411     if (to->pkey.dh->g != NULL)
412         BN_free(to->pkey.dh->g);
413     to->pkey.dh->g = a;
414
415     return 1;
416 }
417
418 static int dh_missing_parameters(const EVP_PKEY *a)
419 {
420     if (!a->pkey.dh->p || !a->pkey.dh->g)
421         return 1;
422     return 0;
423 }
424
425 static int dh_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
426 {
427     if (dh_cmp_parameters(a, b) == 0)
428         return 0;
429     if (BN_cmp(b->pkey.dh->pub_key, a->pkey.dh->pub_key) != 0)
430         return 0;
431     else
432         return 1;
433 }
434
435 static int dh_param_print(BIO *bp, const EVP_PKEY *pkey, int indent,
436                           ASN1_PCTX *ctx)
437 {
438     return do_dh_print(bp, pkey->pkey.dh, indent, ctx, 0);
439 }
440
441 static int dh_public_print(BIO *bp, const EVP_PKEY *pkey, int indent,
442                            ASN1_PCTX *ctx)
443 {
444     return do_dh_print(bp, pkey->pkey.dh, indent, ctx, 1);
445 }
446
447 static int dh_private_print(BIO *bp, const EVP_PKEY *pkey, int indent,
448                             ASN1_PCTX *ctx)
449 {
450     return do_dh_print(bp, pkey->pkey.dh, indent, ctx, 2);
451 }
452
453 int DHparams_print(BIO *bp, const DH *x)
454 {
455     return do_dh_print(bp, x, 4, NULL, 0);
456 }
457
458 const EVP_PKEY_ASN1_METHOD dh_asn1_meth = {
459     EVP_PKEY_DH,
460     EVP_PKEY_DH,
461     0,
462
463     "DH",
464     "OpenSSL PKCS#3 DH method",
465
466     dh_pub_decode,
467     dh_pub_encode,
468     dh_pub_cmp,
469     dh_public_print,
470
471     dh_priv_decode,
472     dh_priv_encode,
473     dh_private_print,
474
475     int_dh_size,
476     dh_bits,
477
478     dh_param_decode,
479     dh_param_encode,
480     dh_missing_parameters,
481     dh_copy_parameters,
482     dh_cmp_parameters,
483     dh_param_print,
484     0,
485
486     int_dh_free,
487     0
488 };