]> git.ipfire.org Git - thirdparty/openssl.git/blob - crypto/dsa/dsa_lib.c
Add checks on CRYPTO_new_ex_data return value...
[thirdparty/openssl.git] / crypto / dsa / dsa_lib.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2 * All rights reserved.
3 *
4 * This package is an SSL implementation written
5 * by Eric Young (eay@cryptsoft.com).
6 * The implementation was written so as to conform with Netscapes SSL.
7 *
8 * This library is free for commercial and non-commercial use as long as
9 * the following conditions are aheared to. The following conditions
10 * apply to all code found in this distribution, be it the RC4, RSA,
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
12 * included with this distribution is covered by the same copyright terms
13 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14 *
15 * Copyright remains Eric Young's, and as such any Copyright notices in
16 * the code are not to be removed.
17 * If this package is used in a product, Eric Young should be given attribution
18 * as the author of the parts of the library used.
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
21 *
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 * 3. All advertising materials mentioning features or use of this software
31 * must display the following acknowledgement:
32 * "This product includes cryptographic software written by
33 * Eric Young (eay@cryptsoft.com)"
34 * The word 'cryptographic' can be left out if the rouines from the library
35 * being used are not cryptographic related :-).
36 * 4. If you include any Windows specific code (or a derivative thereof) from
37 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39 *
40 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
51 *
52 * The licence and distribution terms for any publically available version or
53 * derivative of this code cannot be changed. i.e. this code cannot simply be
54 * copied and put under another distribution licence
55 * [including the GNU Public Licence.]
56 */
57
58 /* Original version from Steven Schoch <schoch@sheba.arc.nasa.gov> */
59
60 #include <stdio.h>
61 #include "internal/cryptlib.h"
62 #include <openssl/bn.h>
63 #include "dsa_locl.h"
64 #include <openssl/asn1.h>
65 #include <openssl/engine.h>
66 #include <openssl/dh.h>
67
68 static const DSA_METHOD *default_DSA_method = NULL;
69
70 void DSA_set_default_method(const DSA_METHOD *meth)
71 {
72 default_DSA_method = meth;
73 }
74
75 const DSA_METHOD *DSA_get_default_method(void)
76 {
77 if (!default_DSA_method)
78 default_DSA_method = DSA_OpenSSL();
79 return default_DSA_method;
80 }
81
82 DSA *DSA_new(void)
83 {
84 return DSA_new_method(NULL);
85 }
86
87 int DSA_set_method(DSA *dsa, const DSA_METHOD *meth)
88 {
89 /*
90 * NB: The caller is specifically setting a method, so it's not up to us
91 * to deal with which ENGINE it comes from.
92 */
93 const DSA_METHOD *mtmp;
94 mtmp = dsa->meth;
95 if (mtmp->finish)
96 mtmp->finish(dsa);
97 #ifndef OPENSSL_NO_ENGINE
98 ENGINE_finish(dsa->engine);
99 dsa->engine = NULL;
100 #endif
101 dsa->meth = meth;
102 if (meth->init)
103 meth->init(dsa);
104 return 1;
105 }
106
107 const DSA_METHOD *DSA_get_method(DSA *d)
108 {
109 return d->meth;
110 }
111
112 DSA *DSA_new_method(ENGINE *engine)
113 {
114 DSA *ret = OPENSSL_zalloc(sizeof(*ret));
115
116 if (ret == NULL) {
117 DSAerr(DSA_F_DSA_NEW_METHOD, ERR_R_MALLOC_FAILURE);
118 return NULL;
119 }
120
121 ret->references = 1;
122 ret->lock = CRYPTO_THREAD_lock_new();
123 if (ret->lock == NULL) {
124 OPENSSL_free(ret);
125 return NULL;
126 }
127
128 ret->meth = DSA_get_default_method();
129 #ifndef OPENSSL_NO_ENGINE
130 ret->flags = ret->meth->flags & ~DSA_FLAG_NON_FIPS_ALLOW; /* early default init */
131 if (engine) {
132 if (!ENGINE_init(engine)) {
133 DSAerr(DSA_F_DSA_NEW_METHOD, ERR_R_ENGINE_LIB);
134 goto err;
135 }
136 ret->engine = engine;
137 } else
138 ret->engine = ENGINE_get_default_DSA();
139 if (ret->engine) {
140 ret->meth = ENGINE_get_DSA(ret->engine);
141 if (ret->meth == NULL) {
142 DSAerr(DSA_F_DSA_NEW_METHOD, ERR_R_ENGINE_LIB);
143 goto err;
144 }
145 }
146 #endif
147
148 ret->flags = ret->meth->flags & ~DSA_FLAG_NON_FIPS_ALLOW;
149
150 if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_DSA, ret, &ret->ex_data))
151 goto err;
152
153 if ((ret->meth->init != NULL) && !ret->meth->init(ret)) {
154 DSAerr(DSA_F_DSA_NEW_METHOD, ERR_R_INIT_FAIL);
155 err:
156 DSA_free(ret);
157 ret = NULL;
158 }
159
160 return ret;
161 }
162
163 void DSA_free(DSA *r)
164 {
165 int i;
166
167 if (r == NULL)
168 return;
169
170 CRYPTO_atomic_add(&r->references, -1, &i, r->lock);
171 REF_PRINT_COUNT("DSA", r);
172 if (i > 0)
173 return;
174 REF_ASSERT_ISNT(i < 0);
175
176 if (r->meth->finish)
177 r->meth->finish(r);
178 #ifndef OPENSSL_NO_ENGINE
179 ENGINE_finish(r->engine);
180 #endif
181
182 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_DSA, r, &r->ex_data);
183
184 CRYPTO_THREAD_lock_free(r->lock);
185
186 BN_clear_free(r->p);
187 BN_clear_free(r->q);
188 BN_clear_free(r->g);
189 BN_clear_free(r->pub_key);
190 BN_clear_free(r->priv_key);
191 OPENSSL_free(r);
192 }
193
194 int DSA_up_ref(DSA *r)
195 {
196 int i;
197
198 if (CRYPTO_atomic_add(&r->references, 1, &i, r->lock) <= 0)
199 return 0;
200
201 REF_PRINT_COUNT("DSA", r);
202 REF_ASSERT_ISNT(i < 2);
203 return ((i > 1) ? 1 : 0);
204 }
205
206 int DSA_size(const DSA *r)
207 {
208 int ret, i;
209 ASN1_INTEGER bs;
210 unsigned char buf[4]; /* 4 bytes looks really small. However,
211 * i2d_ASN1_INTEGER() will not look beyond
212 * the first byte, as long as the second
213 * parameter is NULL. */
214
215 i = BN_num_bits(r->q);
216 bs.length = (i + 7) / 8;
217 bs.data = buf;
218 bs.type = V_ASN1_INTEGER;
219 /* If the top bit is set the asn1 encoding is 1 larger. */
220 buf[0] = 0xff;
221
222 i = i2d_ASN1_INTEGER(&bs, NULL);
223 i += i; /* r and s */
224 ret = ASN1_object_size(1, i, V_ASN1_SEQUENCE);
225 return (ret);
226 }
227
228 int DSA_set_ex_data(DSA *d, int idx, void *arg)
229 {
230 return (CRYPTO_set_ex_data(&d->ex_data, idx, arg));
231 }
232
233 void *DSA_get_ex_data(DSA *d, int idx)
234 {
235 return (CRYPTO_get_ex_data(&d->ex_data, idx));
236 }
237
238 int DSA_security_bits(const DSA *d)
239 {
240 if (d->p && d->q)
241 return BN_security_bits(BN_num_bits(d->p), BN_num_bits(d->q));
242 return -1;
243 }
244
245 #ifndef OPENSSL_NO_DH
246 DH *DSA_dup_DH(const DSA *r)
247 {
248 /*
249 * DSA has p, q, g, optional pub_key, optional priv_key. DH has p,
250 * optional length, g, optional pub_key, optional priv_key, optional q.
251 */
252
253 DH *ret = NULL;
254 BIGNUM *p = NULL, *q = NULL, *g = NULL, *pub_key = NULL, *priv_key = NULL;
255
256 if (r == NULL)
257 goto err;
258 ret = DH_new();
259 if (ret == NULL)
260 goto err;
261 if (r->p != NULL || r->g != NULL || r->q != NULL) {
262 if (r->p == NULL || r->g == NULL || r->q == NULL) {
263 /* Shouldn't happen */
264 goto err;
265 }
266 p = BN_dup(r->p);
267 g = BN_dup(r->g);
268 q = BN_dup(r->q);
269 if (p == NULL || g == NULL || q == NULL || !DH_set0_pqg(ret, p, q, g))
270 goto err;
271 p = g = q = NULL;
272 }
273
274 if (r->pub_key != NULL) {
275 pub_key = BN_dup(r->pub_key);
276 if (pub_key == NULL)
277 goto err;
278 if (r->priv_key != NULL) {
279 priv_key = BN_dup(r->priv_key);
280 if (priv_key == NULL)
281 goto err;
282 }
283 if (!DH_set0_key(ret, pub_key, priv_key))
284 goto err;
285 } else if (r->priv_key != NULL) {
286 /* Shouldn't happen */
287 goto err;
288 }
289
290 return ret;
291
292 err:
293 BN_free(p);
294 BN_free(g);
295 BN_free(q);
296 BN_free(pub_key);
297 BN_free(priv_key);
298 DH_free(ret);
299 return NULL;
300 }
301 #endif
302
303 void DSA_get0_pqg(const DSA *d, BIGNUM **p, BIGNUM **q, BIGNUM **g)
304 {
305 if (p != NULL)
306 *p = d->p;
307 if (q != NULL)
308 *q = d->q;
309 if (g != NULL)
310 *g = d->g;
311 }
312
313 int DSA_set0_pqg(DSA *d, BIGNUM *p, BIGNUM *q, BIGNUM *g)
314 {
315 /* If the fields in d are NULL, the corresponding input
316 * parameters MUST be non-NULL.
317 *
318 * It is an error to give the results from get0 on d
319 * as input parameters.
320 */
321 if (p == d->p || q == d->q || g == d->g)
322 return 0;
323
324 if (p != NULL) {
325 BN_free(d->p);
326 d->p = p;
327 }
328 if (q != NULL) {
329 BN_free(d->q);
330 d->q = q;
331 }
332 if (g != NULL) {
333 BN_free(d->g);
334 d->g = g;
335 }
336
337 return 1;
338 }
339
340 void DSA_get0_key(const DSA *d, BIGNUM **pub_key, BIGNUM **priv_key)
341 {
342 if (pub_key != NULL)
343 *pub_key = d->pub_key;
344 if (priv_key != NULL)
345 *priv_key = d->priv_key;
346 }
347
348 int DSA_set0_key(DSA *d, BIGNUM *pub_key, BIGNUM *priv_key)
349 {
350 /* If the pub_key in d is NULL, the corresponding input
351 * parameters MUST be non-NULL. The priv_key field may
352 * be left NULL.
353 *
354 * It is an error to give the results from get0 on d
355 * as input parameters.
356 */
357 if (d->pub_key == pub_key
358 || (d->priv_key != NULL && priv_key == d->priv_key))
359 return 0;
360
361 if (pub_key != NULL) {
362 BN_free(d->pub_key);
363 d->pub_key = pub_key;
364 }
365 if (priv_key != NULL) {
366 BN_free(d->priv_key);
367 d->priv_key = priv_key;
368 }
369
370 return 1;
371 }
372
373 void DSA_clear_flags(DSA *d, int flags)
374 {
375 d->flags &= ~flags;
376 }
377
378 int DSA_test_flags(const DSA *d, int flags)
379 {
380 return d->flags & flags;
381 }
382
383 void DSA_set_flags(DSA *d, int flags)
384 {
385 d->flags |= flags;
386 }
387
388 ENGINE *DSA_get0_engine(DSA *d)
389 {
390 return d->engine;
391 }