]> git.ipfire.org Git - thirdparty/openssl.git/blob - crypto/dsa/dsa_ameth.c
Initialize pval.
[thirdparty/openssl.git] / crypto / dsa / dsa_ameth.c
1 /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
2 * project 2006.
3 */
4 /* ====================================================================
5 * Copyright (c) 2006 The OpenSSL Project. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 *
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 *
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in
16 * the documentation and/or other materials provided with the
17 * distribution.
18 *
19 * 3. All advertising materials mentioning features or use of this
20 * software must display the following acknowledgment:
21 * "This product includes software developed by the OpenSSL Project
22 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
23 *
24 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
25 * endorse or promote products derived from this software without
26 * prior written permission. For written permission, please contact
27 * licensing@OpenSSL.org.
28 *
29 * 5. Products derived from this software may not be called "OpenSSL"
30 * nor may "OpenSSL" appear in their names without prior written
31 * permission of the OpenSSL Project.
32 *
33 * 6. Redistributions of any form whatsoever must retain the following
34 * acknowledgment:
35 * "This product includes software developed by the OpenSSL Project
36 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
37 *
38 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
39 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
40 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
41 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
42 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
43 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
44 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
45 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
46 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
47 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
48 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
49 * OF THE POSSIBILITY OF SUCH DAMAGE.
50 * ====================================================================
51 *
52 * This product includes cryptographic software written by Eric Young
53 * (eay@cryptsoft.com). This product includes software written by Tim
54 * Hudson (tjh@cryptsoft.com).
55 *
56 */
57
58 #include <stdio.h>
59 #include "cryptlib.h"
60 #include <openssl/x509.h>
61 #include <openssl/asn1.h>
62 #include <openssl/dsa.h>
63 #include "asn1_locl.h"
64
65 static int dsa_pub_decode(EVP_PKEY *pkey, X509_PUBKEY *pubkey)
66 {
67 const unsigned char *p, *pm;
68 int pklen, pmlen;
69 int ptype;
70 void *pval;
71 ASN1_STRING *pstr;
72 X509_ALGOR *palg;
73 ASN1_INTEGER *public_key = NULL;
74
75 DSA *dsa = NULL;
76
77 if (!X509_PUBKEY_get0_param(NULL, &p, &pklen, &palg, pubkey))
78 return 0;
79 X509_ALGOR_get0(NULL, &ptype, &pval, palg);
80
81 if (ptype != V_ASN1_SEQUENCE)
82 {
83 DSAerr(DSA_F_DSA_PUB_DECODE, DSA_R_PARAMETER_ENCODING_ERROR);
84 goto err;
85 }
86
87 pstr = pval;
88 pm = pstr->data;
89 pmlen = pstr->length;
90
91 if (!(dsa = d2i_DSAparams(NULL, &pm, pmlen)))
92 {
93 DSAerr(DSA_F_DSA_PUB_DECODE, DSA_R_DECODE_ERROR);
94 goto err;
95 }
96
97 if (!(public_key=d2i_ASN1_INTEGER(NULL, &p, pklen)))
98 {
99 DSAerr(DSA_F_DSA_PUB_DECODE, DSA_R_DECODE_ERROR);
100 goto err;
101 }
102
103 /* We have parameters now set public key */
104 if (!(dsa->pub_key = ASN1_INTEGER_to_BN(public_key, NULL)))
105 {
106 DSAerr(DSA_F_DSA_PUB_DECODE, DSA_R_BN_DECODE_ERROR);
107 goto err;
108 }
109
110 ASN1_INTEGER_free(public_key);
111 EVP_PKEY_assign_DSA(pkey, dsa);
112 return 1;
113
114 err:
115 if (pubkey)
116 ASN1_INTEGER_free(public_key);
117 if (dsa)
118 DSA_free(dsa);
119 return 0;
120
121 }
122
123 static int dsa_pub_encode(X509_PUBKEY *pk, const EVP_PKEY *pkey)
124 {
125 DSA *dsa;
126 void *pval = NULL;
127 int ptype;
128 unsigned char *penc = NULL;
129 int penclen;
130
131 dsa=pkey->pkey.dsa;
132 if (pkey->save_parameters)
133 {
134 ASN1_STRING *str;
135 str = ASN1_STRING_new();
136 str->length = i2d_DSAparams(dsa, &str->data);
137 if (str->length <= 0)
138 {
139 DSAerr(DSA_F_DSA_PUB_ENCODE, ERR_R_MALLOC_FAILURE);
140 goto err;
141 }
142 pval = str;
143 ptype = V_ASN1_SEQUENCE;
144 }
145 else
146 ptype = V_ASN1_UNDEF;
147 dsa->write_params=0;
148
149 penclen = i2d_DSAPublicKey(dsa, &penc);
150
151 if (penclen <= 0)
152 {
153 DSAerr(DSA_F_DSA_PUB_ENCODE, ERR_R_MALLOC_FAILURE);
154 goto err;
155 }
156
157 if (X509_PUBKEY_set0_param(pk, OBJ_nid2obj(EVP_PKEY_DSA),
158 ptype, pval, penc, penclen))
159 return 1;
160
161 err:
162 if (penc)
163 OPENSSL_free(penc);
164 if (pval)
165 ASN1_STRING_free(pval);
166
167 return 0;
168 }
169
170 static int dsa_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
171 {
172 if (BN_cmp(b->pkey.dsa->pub_key,a->pkey.dsa->pub_key) != 0)
173 return 0;
174 else
175 return 1;
176 }
177
178 /* In PKCS#8 DSA: you just get a private key integer and parameters in the
179 * AlgorithmIdentifier the pubkey must be recalculated.
180 */
181
182 static int dsa_priv_decode(EVP_PKEY *pkey, PKCS8_PRIV_KEY_INFO *p8)
183 {
184 const unsigned char *p, *pm;
185 int pklen, pmlen;
186 int ptype;
187 void *pval;
188 ASN1_STRING *pstr;
189 X509_ALGOR *palg;
190 ASN1_INTEGER *privkey = NULL;
191 BN_CTX *ctx = NULL;
192
193 STACK_OF(ASN1_TYPE) *ndsa = NULL;
194 DSA *dsa = NULL;
195
196 if (!PKCS8_pkey_get0(NULL, &p, &pklen, &palg, p8))
197 return 0;
198 X509_ALGOR_get0(NULL, &ptype, &pval, palg);
199
200 /* Check for broken DSA PKCS#8, UGH! */
201 if (*p == (V_ASN1_SEQUENCE|V_ASN1_CONSTRUCTED))
202 {
203 ASN1_TYPE *t1, *t2;
204 if(!(ndsa = ASN1_seq_unpack_ASN1_TYPE(p, pklen,
205 d2i_ASN1_TYPE,
206 ASN1_TYPE_free)))
207 goto decerr;
208 if (sk_ASN1_TYPE_num(ndsa) != 2)
209 goto decerr;
210 /* Handle Two broken types:
211 * SEQUENCE {parameters, priv_key}
212 * SEQUENCE {pub_key, priv_key}
213 */
214
215 t1 = sk_ASN1_TYPE_value(ndsa, 0);
216 t2 = sk_ASN1_TYPE_value(ndsa, 1);
217 if (t1->type == V_ASN1_SEQUENCE)
218 {
219 p8->broken = PKCS8_EMBEDDED_PARAM;
220 pval = t1->value.ptr;
221 }
222 else if (ptype == V_ASN1_SEQUENCE)
223 p8->broken = PKCS8_NS_DB;
224 else
225 goto decerr;
226
227 if (t2->type != V_ASN1_INTEGER)
228 goto decerr;
229
230 privkey = t2->value.integer;
231 }
232 else
233 {
234 if (!(privkey=d2i_ASN1_INTEGER(NULL, &p, pklen)))
235 goto decerr;
236 if (ptype != V_ASN1_SEQUENCE)
237 goto decerr;
238 }
239
240 pstr = pval;
241 pm = pstr->data;
242 pmlen = pstr->length;
243 if (!(dsa = d2i_DSAparams(NULL, &pm, pmlen)))
244 goto decerr;
245 /* We have parameters now set private key */
246 if (!(dsa->priv_key = ASN1_INTEGER_to_BN(privkey, NULL)))
247 {
248 DSAerr(DSA_F_DSA_PRIV_DECODE,DSA_R_BN_ERROR);
249 goto dsaerr;
250 }
251 /* Calculate public key */
252 if (!(dsa->pub_key = BN_new()))
253 {
254 DSAerr(DSA_F_DSA_PRIV_DECODE, ERR_R_MALLOC_FAILURE);
255 goto dsaerr;
256 }
257 if (!(ctx = BN_CTX_new()))
258 {
259 DSAerr(DSA_F_DSA_PRIV_DECODE, ERR_R_MALLOC_FAILURE);
260 goto dsaerr;
261 }
262
263 if (!BN_mod_exp(dsa->pub_key, dsa->g, dsa->priv_key, dsa->p, ctx))
264 {
265 DSAerr(DSA_F_DSA_PRIV_DECODE,DSA_R_BN_ERROR);
266 goto dsaerr;
267 }
268
269 EVP_PKEY_assign_DSA(pkey, dsa);
270 BN_CTX_free (ctx);
271 if(ndsa)
272 sk_ASN1_TYPE_pop_free(ndsa, ASN1_TYPE_free);
273 else
274 ASN1_INTEGER_free(privkey);
275
276 return 1;
277
278 decerr:
279 DSAerr(DSA_F_DSA_PRIV_DECODE, EVP_R_DECODE_ERROR);
280 dsaerr:
281 BN_CTX_free (ctx);
282 sk_ASN1_TYPE_pop_free(ndsa, ASN1_TYPE_free);
283 DSA_free(dsa);
284 EVP_PKEY_free(pkey);
285 return 0;
286 }
287
288 static int dsa_priv_encode(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pkey)
289 {
290 ASN1_STRING *params = NULL;
291 ASN1_INTEGER *prkey = NULL;
292 unsigned char *dp = NULL;
293 int dplen;
294
295 params = ASN1_STRING_new();
296
297 if (!params)
298 {
299 DSAerr(DSA_F_DSA_PRIV_ENCODE,ERR_R_MALLOC_FAILURE);
300 goto err;
301 }
302
303 params->length = i2d_DSAparams(pkey->pkey.dsa, &params->data);
304 if (params->length <= 0)
305 {
306 DSAerr(DSA_F_DSA_PRIV_ENCODE,ERR_R_MALLOC_FAILURE);
307 goto err;
308 }
309 params->type = V_ASN1_SEQUENCE;
310
311 /* Get private key into integer */
312 prkey = BN_to_ASN1_INTEGER(pkey->pkey.dsa->priv_key, NULL);
313
314 if (!prkey)
315 {
316 DSAerr(DSA_F_DSA_PRIV_ENCODE,DSA_R_BN_ERROR);
317 goto err;
318 }
319
320 dplen = i2d_ASN1_INTEGER(prkey, &dp);
321
322 ASN1_INTEGER_free(prkey);
323
324 if (!PKCS8_pkey_set0(p8, OBJ_nid2obj(NID_dsa), 0,
325 V_ASN1_SEQUENCE, params, dp, dplen))
326 goto err;
327
328 return 1;
329
330 err:
331 if (dp != NULL)
332 OPENSSL_free(dp);
333 if (params != NULL)
334 ASN1_STRING_free(params);
335 if (prkey != NULL)
336 ASN1_INTEGER_free(prkey);
337 return 0;
338 }
339
340 static int int_dsa_size(const EVP_PKEY *pkey)
341 {
342 return(DSA_size(pkey->pkey.dsa));
343 }
344
345 static int dsa_bits(const EVP_PKEY *pkey)
346 {
347 return BN_num_bits(pkey->pkey.dsa->p);
348 }
349
350 static int dsa_missing_parameters(const EVP_PKEY *pkey)
351 {
352 DSA *dsa;
353 dsa=pkey->pkey.dsa;
354 if ((dsa->p == NULL) || (dsa->q == NULL) || (dsa->g == NULL))
355 return 1;
356 return 0;
357 }
358
359 static int dsa_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from)
360 {
361 BIGNUM *a;
362
363 if ((a=BN_dup(from->pkey.dsa->p)) == NULL)
364 return 0;
365 if (to->pkey.dsa->p != NULL)
366 BN_free(to->pkey.dsa->p);
367 to->pkey.dsa->p=a;
368
369 if ((a=BN_dup(from->pkey.dsa->q)) == NULL)
370 return 0;
371 if (to->pkey.dsa->q != NULL)
372 BN_free(to->pkey.dsa->q);
373 to->pkey.dsa->q=a;
374
375 if ((a=BN_dup(from->pkey.dsa->g)) == NULL)
376 return 0;
377 if (to->pkey.dsa->g != NULL)
378 BN_free(to->pkey.dsa->g);
379 to->pkey.dsa->g=a;
380 return 1;
381 }
382
383 static int dsa_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
384 {
385 if ( BN_cmp(a->pkey.dsa->p,b->pkey.dsa->p) ||
386 BN_cmp(a->pkey.dsa->q,b->pkey.dsa->q) ||
387 BN_cmp(a->pkey.dsa->g,b->pkey.dsa->g))
388 return 0;
389 else
390 return 1;
391 }
392
393 static void int_dsa_free(EVP_PKEY *pkey)
394 {
395 DSA_free(pkey->pkey.dsa);
396 }
397
398 static void update_buflen(const BIGNUM *b, size_t *pbuflen)
399 {
400 int i;
401 if (!b)
402 return;
403 if (*pbuflen < (i = (size_t)BN_num_bytes(b)))
404 *pbuflen = i;
405 }
406
407 int do_dsa_print(BIO *bp, const DSA *x, int off, int ptype)
408 {
409 unsigned char *m=NULL;
410 int ret=0;
411 size_t buf_len=0;
412 const char *ktype = NULL;
413
414 const BIGNUM *priv_key, *pub_key;
415
416 if (ptype == 2)
417 priv_key = x->priv_key;
418 else
419 priv_key = NULL;
420
421 if (ptype > 0)
422 pub_key = x->pub_key;
423 else
424 pub_key = NULL;
425
426 if (ptype == 2)
427 ktype = "Private-Key";
428 else if (ptype == 1)
429 ktype = "Public-Key";
430 else
431 ktype = "DSA-Parameters";
432
433 if (x->p == NULL)
434 {
435 DSAerr(DSA_F_DSA_PRINT,DSA_R_MISSING_PARAMETERS);
436 goto err;
437 }
438
439 update_buflen(x->p, &buf_len);
440 update_buflen(x->q, &buf_len);
441 update_buflen(x->g, &buf_len);
442 update_buflen(priv_key, &buf_len);
443 update_buflen(pub_key, &buf_len);
444
445 m=(unsigned char *)OPENSSL_malloc(buf_len+10);
446 if (m == NULL)
447 {
448 DSAerr(DSA_F_DSA_PRINT,ERR_R_MALLOC_FAILURE);
449 goto err;
450 }
451
452 if (priv_key)
453 {
454 if(!BIO_indent(bp,off,128))
455 goto err;
456 if (BIO_printf(bp,"%s: (%d bit)\n",ktype, BN_num_bits(x->p))
457 <= 0) goto err;
458 }
459
460 if (!ASN1_bn_print(bp,"priv:",priv_key,m,off))
461 goto err;
462 if (!ASN1_bn_print(bp,"pub: ",pub_key,m,off))
463 goto err;
464 if (!ASN1_bn_print(bp,"P: ",x->p,m,off)) goto err;
465 if (!ASN1_bn_print(bp,"Q: ",x->q,m,off)) goto err;
466 if (!ASN1_bn_print(bp,"G: ",x->g,m,off)) goto err;
467 ret=1;
468 err:
469 if (m != NULL) OPENSSL_free(m);
470 return(ret);
471 }
472
473 static int dsa_param_decode(EVP_PKEY *pkey,
474 const unsigned char **pder, int derlen)
475 {
476 DSA *dsa;
477 if (!(dsa = d2i_DSAparams(NULL, pder, derlen)))
478 {
479 DSAerr(DSA_F_DSA_PARAM_DECODE, ERR_R_DSA_LIB);
480 return 0;
481 }
482 EVP_PKEY_assign_DSA(pkey, dsa);
483 return 1;
484 }
485
486 static int dsa_param_encode(const EVP_PKEY *pkey, unsigned char **pder)
487 {
488 return i2d_DSAparams(pkey->pkey.dsa, pder);
489 }
490
491 static int dsa_param_print(BIO *bp, const EVP_PKEY *pkey, int indent,
492 ASN1_PCTX *ctx)
493 {
494 return do_dsa_print(bp, pkey->pkey.dsa, indent, 0);
495 }
496
497 static int dsa_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent,
498 ASN1_PCTX *ctx)
499 {
500 return do_dsa_print(bp, pkey->pkey.dsa, indent, 1);
501 }
502
503
504 static int dsa_priv_print(BIO *bp, const EVP_PKEY *pkey, int indent,
505 ASN1_PCTX *ctx)
506 {
507 return do_dsa_print(bp, pkey->pkey.dsa, indent, 2);
508 }
509
510 static int old_dsa_priv_decode(EVP_PKEY *pkey,
511 const unsigned char **pder, int derlen)
512 {
513 DSA *dsa;
514 if (!(dsa = d2i_DSAPrivateKey (NULL, pder, derlen)))
515 {
516 DSAerr(DSA_F_DSA_PRIV_DECODE, ERR_R_DSA_LIB);
517 return 0;
518 }
519 EVP_PKEY_assign_DSA(pkey, dsa);
520 return 1;
521 }
522
523 static int old_dsa_priv_encode(const EVP_PKEY *pkey, unsigned char **pder)
524 {
525 return i2d_DSAPrivateKey(pkey->pkey.dsa, pder);
526 }
527
528 /* NB these are sorted in pkey_id order, lowest first */
529
530 const EVP_PKEY_ASN1_METHOD dsa_asn1_meths[] =
531 {
532
533 {
534 EVP_PKEY_DSA2,
535 EVP_PKEY_DSA,
536 ASN1_PKEY_ALIAS
537 },
538
539 {
540 EVP_PKEY_DSA1,
541 EVP_PKEY_DSA,
542 ASN1_PKEY_ALIAS
543 },
544
545 {
546 EVP_PKEY_DSA4,
547 EVP_PKEY_DSA,
548 ASN1_PKEY_ALIAS
549 },
550
551 {
552 EVP_PKEY_DSA3,
553 EVP_PKEY_DSA,
554 ASN1_PKEY_ALIAS
555 },
556
557 {
558 EVP_PKEY_DSA,
559 EVP_PKEY_DSA,
560 0,
561
562 "DSA",
563 "OpenSSL DSA method",
564
565 dsa_pub_decode,
566 dsa_pub_encode,
567 dsa_pub_cmp,
568 dsa_pub_print,
569
570 dsa_priv_decode,
571 dsa_priv_encode,
572 dsa_priv_print,
573
574 int_dsa_size,
575 dsa_bits,
576
577 dsa_param_decode,
578 dsa_param_encode,
579 dsa_missing_parameters,
580 dsa_copy_parameters,
581 dsa_cmp_parameters,
582 dsa_param_print,
583
584 int_dsa_free,
585 0,
586 old_dsa_priv_decode,
587 old_dsa_priv_encode
588 }
589 };
590