Add $(LIB_CFLAGS) for any build.info generator that uses $(CFLAGS)
[openssl.git] / crypto / dh / dh_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 #include <stdio.h>
59 #include "internal/cryptlib.h"
60 #include <openssl/bn.h>
61 #include <openssl/dh.h>
62 #ifndef OPENSSL_NO_ENGINE
63 # include <openssl/engine.h>
64 #endif
65
66 static const DH_METHOD *default_DH_method = NULL;
67
68 void DH_set_default_method(const DH_METHOD *meth)
69 {
70     default_DH_method = meth;
71 }
72
73 const DH_METHOD *DH_get_default_method(void)
74 {
75     if (!default_DH_method)
76         default_DH_method = DH_OpenSSL();
77     return default_DH_method;
78 }
79
80 int DH_set_method(DH *dh, const DH_METHOD *meth)
81 {
82     /*
83      * NB: The caller is specifically setting a method, so it's not up to us
84      * to deal with which ENGINE it comes from.
85      */
86     const DH_METHOD *mtmp;
87     mtmp = dh->meth;
88     if (mtmp->finish)
89         mtmp->finish(dh);
90 #ifndef OPENSSL_NO_ENGINE
91     ENGINE_finish(dh->engine);
92     dh->engine = NULL;
93 #endif
94     dh->meth = meth;
95     if (meth->init)
96         meth->init(dh);
97     return 1;
98 }
99
100 DH *DH_new(void)
101 {
102     return DH_new_method(NULL);
103 }
104
105 DH *DH_new_method(ENGINE *engine)
106 {
107     DH *ret = OPENSSL_zalloc(sizeof(*ret));
108
109     if (ret == NULL) {
110         DHerr(DH_F_DH_NEW_METHOD, ERR_R_MALLOC_FAILURE);
111         return NULL;
112     }
113
114     ret->meth = DH_get_default_method();
115 #ifndef OPENSSL_NO_ENGINE
116     if (engine) {
117         if (!ENGINE_init(engine)) {
118             DHerr(DH_F_DH_NEW_METHOD, ERR_R_ENGINE_LIB);
119             OPENSSL_free(ret);
120             return NULL;
121         }
122         ret->engine = engine;
123     } else
124         ret->engine = ENGINE_get_default_DH();
125     if (ret->engine) {
126         ret->meth = ENGINE_get_DH(ret->engine);
127         if (ret->meth == NULL) {
128             DHerr(DH_F_DH_NEW_METHOD, ERR_R_ENGINE_LIB);
129             ENGINE_finish(ret->engine);
130             OPENSSL_free(ret);
131             return NULL;
132         }
133     }
134 #endif
135
136     ret->references = 1;
137     ret->flags = ret->meth->flags;
138
139     CRYPTO_new_ex_data(CRYPTO_EX_INDEX_DH, ret, &ret->ex_data);
140
141     ret->lock = CRYPTO_THREAD_lock_new();
142     if (ret->lock == NULL) {
143 #ifndef OPENSSL_NO_ENGINE
144         ENGINE_finish(ret->engine);
145 #endif
146         CRYPTO_free_ex_data(CRYPTO_EX_INDEX_DH, ret, &ret->ex_data);
147         OPENSSL_free(ret);
148         return NULL;
149     }
150
151     if ((ret->meth->init != NULL) && !ret->meth->init(ret)) {
152         DH_free(ret);
153         ret = NULL;
154     }
155
156     return ret;
157 }
158
159 void DH_free(DH *r)
160 {
161     int i;
162
163     if (r == NULL)
164         return;
165
166     CRYPTO_atomic_add(&r->references, -1, &i, r->lock);
167     REF_PRINT_COUNT("DH", r);
168     if (i > 0)
169         return;
170     REF_ASSERT_ISNT(i < 0);
171
172     if (r->meth->finish)
173         r->meth->finish(r);
174 #ifndef OPENSSL_NO_ENGINE
175     ENGINE_finish(r->engine);
176 #endif
177
178     CRYPTO_free_ex_data(CRYPTO_EX_INDEX_DH, r, &r->ex_data);
179
180     CRYPTO_THREAD_lock_free(r->lock);
181
182     BN_clear_free(r->p);
183     BN_clear_free(r->g);
184     BN_clear_free(r->q);
185     BN_clear_free(r->j);
186     OPENSSL_free(r->seed);
187     BN_clear_free(r->counter);
188     BN_clear_free(r->pub_key);
189     BN_clear_free(r->priv_key);
190     OPENSSL_free(r);
191 }
192
193 int DH_up_ref(DH *r)
194 {
195     int i;
196
197     if (CRYPTO_atomic_add(&r->references, 1, &i, r->lock) <= 0)
198         return 0;
199
200     REF_PRINT_COUNT("DH", r);
201     REF_ASSERT_ISNT(i < 2);
202     return ((i > 1) ? 1 : 0);
203 }
204
205 int DH_set_ex_data(DH *d, int idx, void *arg)
206 {
207     return (CRYPTO_set_ex_data(&d->ex_data, idx, arg));
208 }
209
210 void *DH_get_ex_data(DH *d, int idx)
211 {
212     return (CRYPTO_get_ex_data(&d->ex_data, idx));
213 }
214
215 int DH_bits(const DH *dh)
216 {
217     return BN_num_bits(dh->p);
218 }
219
220 int DH_size(const DH *dh)
221 {
222     return (BN_num_bytes(dh->p));
223 }
224
225 int DH_security_bits(const DH *dh)
226 {
227     int N;
228     if (dh->q)
229         N = BN_num_bits(dh->q);
230     else if (dh->length)
231         N = dh->length;
232     else
233         N = -1;
234     return BN_security_bits(BN_num_bits(dh->p), N);
235 }