Modify DSA and DH keys to use a shared FFC_PARAMS struct
[openssl.git] / crypto / dh / dh_asn1.c
1 /*
2  * Copyright 2000-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 #include <stdio.h>
11 #include "internal/cryptlib.h"
12 #include <openssl/bn.h>
13 #include "dh_local.h"
14 #include <openssl/objects.h>
15 #include <openssl/asn1t.h>
16
17 /* Override the default free and new methods */
18 static int dh_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
19                  void *exarg)
20 {
21     if (operation == ASN1_OP_NEW_PRE) {
22         *pval = (ASN1_VALUE *)DH_new();
23         if (*pval != NULL)
24             return 2;
25         return 0;
26     } else if (operation == ASN1_OP_FREE_PRE) {
27         DH_free((DH *)*pval);
28         *pval = NULL;
29         return 2;
30     } else if (operation == ASN1_OP_D2I_POST) {
31         ((DH *)*pval)->dirty_cnt++;
32     }
33     return 1;
34 }
35
36 ASN1_SEQUENCE_cb(DHparams, dh_cb) = {
37         ASN1_SIMPLE(DH, params.p, BIGNUM),
38         ASN1_SIMPLE(DH, params.g, BIGNUM),
39         ASN1_OPT_EMBED(DH, length, ZINT32),
40 } ASN1_SEQUENCE_END_cb(DH, DHparams)
41
42 IMPLEMENT_ASN1_ENCODE_FUNCTIONS_fname(DH, DHparams, DHparams)
43
44 /*
45  * Internal only structures for handling X9.42 DH: this gets translated to or
46  * from a DH structure straight away.
47  */
48
49 typedef struct {
50     ASN1_BIT_STRING *seed;
51     BIGNUM *counter;
52 } int_dhvparams;
53
54 typedef struct {
55     BIGNUM *p;
56     BIGNUM *q;
57     BIGNUM *g;
58     BIGNUM *j;
59     int_dhvparams *vparams;
60 } int_dhx942_dh;
61
62 ASN1_SEQUENCE(DHvparams) = {
63         ASN1_SIMPLE(int_dhvparams, seed, ASN1_BIT_STRING),
64         ASN1_SIMPLE(int_dhvparams, counter, BIGNUM)
65 } static_ASN1_SEQUENCE_END_name(int_dhvparams, DHvparams)
66
67 ASN1_SEQUENCE(DHxparams) = {
68         ASN1_SIMPLE(int_dhx942_dh, p, BIGNUM),
69         ASN1_SIMPLE(int_dhx942_dh, g, BIGNUM),
70         ASN1_SIMPLE(int_dhx942_dh, q, BIGNUM),
71         ASN1_OPT(int_dhx942_dh, j, BIGNUM),
72         ASN1_OPT(int_dhx942_dh, vparams, DHvparams),
73 } static_ASN1_SEQUENCE_END_name(int_dhx942_dh, DHxparams)
74
75 int_dhx942_dh *d2i_int_dhx(int_dhx942_dh **a,
76                            const unsigned char **pp, long length);
77 int i2d_int_dhx(const int_dhx942_dh *a, unsigned char **pp);
78
79 IMPLEMENT_ASN1_ENCODE_FUNCTIONS_fname(int_dhx942_dh, DHxparams, int_dhx)
80
81 /* Application public function: read in X9.42 DH parameters into DH structure */
82
83 DH *d2i_DHxparams(DH **a, const unsigned char **pp, long length)
84 {
85     FFC_PARAMS *params;
86     int_dhx942_dh *dhx = NULL;
87     DH *dh = NULL;
88     dh = DH_new();
89     if (dh == NULL)
90         return NULL;
91     dhx = d2i_int_dhx(NULL, pp, length);
92     if (dhx == NULL) {
93         DH_free(dh);
94         return NULL;
95     }
96
97     if (a != NULL) {
98         DH_free(*a);
99         *a = dh;
100     }
101
102     params = &dh->params;
103     ffc_params_set0_pqg(params, dhx->p, dhx->q, dhx->g);
104     ffc_params_set0_j(params, dhx->j);
105
106     if (dhx->vparams != NULL) {
107         /* The counter has a maximum value of 4 * numbits(p) - 1 */
108         size_t counter = (size_t)BN_get_word(dhx->vparams->counter);
109         ffc_params_set_validate_params(params, dhx->vparams->seed->data,
110                                        dhx->vparams->seed->length, counter);
111         ASN1_BIT_STRING_free(dhx->vparams->seed);
112         BN_free(dhx->vparams->counter);
113         OPENSSL_free(dhx->vparams);
114         dhx->vparams = NULL;
115     }
116
117     OPENSSL_free(dhx);
118     return dh;
119 }
120
121 int i2d_DHxparams(const DH *dh, unsigned char **pp)
122 {
123     int ret = 0;
124     int_dhx942_dh dhx;
125     int_dhvparams dhv = { NULL, NULL };
126     ASN1_BIT_STRING seed;
127     size_t seedlen = 0;
128     const FFC_PARAMS *params = &dh->params;
129     int counter;
130
131     ffc_params_get0_pqg(params, (const BIGNUM **)&dhx.p,
132                         (const BIGNUM **)&dhx.q, (const BIGNUM **)&dhx.g);
133     dhx.j = params->j;
134     ffc_params_get_validate_params(params, &seed.data, &seedlen, &counter);
135     seed.length = (int)seedlen;
136
137     if (counter != -1 && seed.data != NULL && seed.length > 0) {
138         seed.flags = ASN1_STRING_FLAG_BITS_LEFT;
139         dhv.seed = &seed;
140         dhv.counter = BN_new();
141         if (dhv.counter == NULL)
142             return 0;
143         if (!BN_set_word(dhv.counter, (BN_ULONG)counter))
144             goto err;
145         dhx.vparams = &dhv;
146     } else {
147         dhx.vparams = NULL;
148     }
149     ret = i2d_int_dhx(&dhx, pp);
150 err:
151     BN_free(dhv.counter);
152     return ret;
153 }