0db35346de9bb5c9a471c1c2aae260ee8b2d094a
[openssl.git] / crypto / ecdsa / ecs_lib.c
1 /* crypto/ecdsa/ecs_lib.c */
2 /* ====================================================================
3  * Copyright (c) 1998-2005 The OpenSSL Project.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in
14  *    the documentation and/or other materials provided with the
15  *    distribution.
16  *
17  * 3. All advertising materials mentioning features or use of this
18  *    software must display the following acknowledgment:
19  *    "This product includes software developed by the OpenSSL Project
20  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
21  *
22  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
23  *    endorse or promote products derived from this software without
24  *    prior written permission. For written permission, please contact
25  *    openssl-core@OpenSSL.org.
26  *
27  * 5. Products derived from this software may not be called "OpenSSL"
28  *    nor may "OpenSSL" appear in their names without prior written
29  *    permission of the OpenSSL Project.
30  *
31  * 6. Redistributions of any form whatsoever must retain the following
32  *    acknowledgment:
33  *    "This product includes software developed by the OpenSSL Project
34  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
35  *
36  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
37  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
38  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
39  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
40  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
41  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
42  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
43  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
44  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
45  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
46  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
47  * OF THE POSSIBILITY OF SUCH DAMAGE.
48  * ====================================================================
49  *
50  * This product includes cryptographic software written by Eric Young
51  * (eay@cryptsoft.com).  This product includes software written by Tim
52  * Hudson (tjh@cryptsoft.com).
53  *
54  */
55
56 #include <string.h>
57 #include "ecs_locl.h"
58 #ifndef OPENSSL_NO_ENGINE
59 # include <openssl/engine.h>
60 #endif
61 #include <openssl/err.h>
62 #include <openssl/bn.h>
63
64 static const ECDSA_METHOD *default_ECDSA_method = NULL;
65
66 static void *ecdsa_data_new(void);
67 static void *ecdsa_data_dup(void *);
68 static void ecdsa_data_free(void *);
69
70 void ECDSA_set_default_method(const ECDSA_METHOD *meth)
71 {
72     default_ECDSA_method = meth;
73 }
74
75 const ECDSA_METHOD *ECDSA_get_default_method(void)
76 {
77     if (!default_ECDSA_method)
78         default_ECDSA_method = ECDSA_OpenSSL();
79     return default_ECDSA_method;
80 }
81
82 int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth)
83 {
84     ECDSA_DATA *ecdsa;
85
86     ecdsa = ecdsa_check(eckey);
87
88     if (ecdsa == NULL)
89         return 0;
90
91 #ifndef OPENSSL_NO_ENGINE
92     if (ecdsa->engine) {
93         ENGINE_finish(ecdsa->engine);
94         ecdsa->engine = NULL;
95     }
96 #endif
97     ecdsa->meth = meth;
98
99     return 1;
100 }
101
102 static ECDSA_DATA *ECDSA_DATA_new_method(ENGINE *engine)
103 {
104     ECDSA_DATA *ret;
105
106     ret = OPENSSL_malloc(sizeof(*ret));
107     if (ret == NULL) {
108         ECDSAerr(ECDSA_F_ECDSA_DATA_NEW_METHOD, ERR_R_MALLOC_FAILURE);
109         return (NULL);
110     }
111
112     ret->init = NULL;
113
114     ret->meth = ECDSA_get_default_method();
115     ret->engine = engine;
116 #ifndef OPENSSL_NO_ENGINE
117     if (!ret->engine)
118         ret->engine = ENGINE_get_default_ECDSA();
119     if (ret->engine) {
120         ret->meth = ENGINE_get_ECDSA(ret->engine);
121         if (!ret->meth) {
122             ECDSAerr(ECDSA_F_ECDSA_DATA_NEW_METHOD, ERR_R_ENGINE_LIB);
123             ENGINE_finish(ret->engine);
124             OPENSSL_free(ret);
125             return NULL;
126         }
127     }
128 #endif
129
130     ret->flags = ret->meth->flags;
131     CRYPTO_new_ex_data(CRYPTO_EX_INDEX_ECDSA, ret, &ret->ex_data);
132     return (ret);
133 }
134
135 static void *ecdsa_data_new(void)
136 {
137     return (void *)ECDSA_DATA_new_method(NULL);
138 }
139
140 static void *ecdsa_data_dup(void *data)
141 {
142     ECDSA_DATA *r = (ECDSA_DATA *)data;
143
144     /* XXX: dummy operation */
145     if (r == NULL)
146         return NULL;
147
148     return ecdsa_data_new();
149 }
150
151 static void ecdsa_data_free(void *data)
152 {
153     ECDSA_DATA *r = (ECDSA_DATA *)data;
154
155 #ifndef OPENSSL_NO_ENGINE
156     if (r->engine)
157         ENGINE_finish(r->engine);
158 #endif
159     CRYPTO_free_ex_data(CRYPTO_EX_INDEX_ECDSA, r, &r->ex_data);
160
161     OPENSSL_clear_free((void *)r, sizeof(ECDSA_DATA));
162 }
163
164 ECDSA_DATA *ecdsa_check(EC_KEY *key)
165 {
166     ECDSA_DATA *ecdsa_data;
167
168     void *data = EC_KEY_get_key_method_data(key, ecdsa_data_dup,
169                                             ecdsa_data_free, ecdsa_data_free);
170     if (data == NULL) {
171         ecdsa_data = (ECDSA_DATA *)ecdsa_data_new();
172         if (ecdsa_data == NULL)
173             return NULL;
174         data = EC_KEY_insert_key_method_data(key, (void *)ecdsa_data,
175                                              ecdsa_data_dup, ecdsa_data_free,
176                                              ecdsa_data_free);
177         if (data != NULL) {
178             /*
179              * Another thread raced us to install the key_method data and
180              * won.
181              */
182             ecdsa_data_free(ecdsa_data);
183             ecdsa_data = (ECDSA_DATA *)data;
184         }
185     } else
186         ecdsa_data = (ECDSA_DATA *)data;
187
188     return ecdsa_data;
189 }
190
191 int ECDSA_size(const EC_KEY *r)
192 {
193     int ret, i;
194     ASN1_INTEGER bs;
195     BIGNUM *order = NULL;
196     unsigned char buf[4];
197     const EC_GROUP *group;
198
199     if (r == NULL)
200         return 0;
201     group = EC_KEY_get0_group(r);
202     if (group == NULL)
203         return 0;
204
205     if ((order = BN_new()) == NULL)
206         return 0;
207     if (!EC_GROUP_get_order(group, order, NULL)) {
208         BN_clear_free(order);
209         return 0;
210     }
211     i = BN_num_bits(order);
212     bs.length = (i + 7) / 8;
213     bs.data = buf;
214     bs.type = V_ASN1_INTEGER;
215     /* If the top bit is set the asn1 encoding is 1 larger. */
216     buf[0] = 0xff;
217
218     i = i2d_ASN1_INTEGER(&bs, NULL);
219     i += i;                     /* r and s */
220     ret = ASN1_object_size(1, i, V_ASN1_SEQUENCE);
221     BN_clear_free(order);
222     return (ret);
223 }
224
225 int ECDSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
226                            CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
227 {
228     return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_ECDSA, argl, argp,
229                                    new_func, dup_func, free_func);
230 }
231
232 int ECDSA_set_ex_data(EC_KEY *d, int idx, void *arg)
233 {
234     ECDSA_DATA *ecdsa;
235     ecdsa = ecdsa_check(d);
236     if (ecdsa == NULL)
237         return 0;
238     return (CRYPTO_set_ex_data(&ecdsa->ex_data, idx, arg));
239 }
240
241 void *ECDSA_get_ex_data(EC_KEY *d, int idx)
242 {
243     ECDSA_DATA *ecdsa;
244     ecdsa = ecdsa_check(d);
245     if (ecdsa == NULL)
246         return NULL;
247     return (CRYPTO_get_ex_data(&ecdsa->ex_data, idx));
248 }
249
250 ECDSA_METHOD *ECDSA_METHOD_new(ECDSA_METHOD *ecdsa_meth)
251 {
252     ECDSA_METHOD *ret;
253
254     ret = OPENSSL_malloc(sizeof(*ret));
255     if (ret == NULL) {
256         ECDSAerr(ECDSA_F_ECDSA_METHOD_NEW, ERR_R_MALLOC_FAILURE);
257         return NULL;
258     }
259
260     if (ecdsa_meth)
261         *ret = *ecdsa_meth;
262     else {
263         ret->ecdsa_sign_setup = 0;
264         ret->ecdsa_do_sign = 0;
265         ret->ecdsa_do_verify = 0;
266         ret->name = NULL;
267         ret->flags = 0;
268     }
269     ret->flags |= ECDSA_METHOD_FLAG_ALLOCATED;
270     return ret;
271 }
272
273 void ECDSA_METHOD_set_sign(ECDSA_METHOD *ecdsa_method,
274                            ECDSA_SIG *(*ecdsa_do_sign) (const unsigned char
275                                                         *dgst, int dgst_len,
276                                                         const BIGNUM *inv,
277                                                         const BIGNUM *rp,
278                                                         EC_KEY *eckey))
279 {
280     ecdsa_method->ecdsa_do_sign = ecdsa_do_sign;
281 }
282
283 void ECDSA_METHOD_set_sign_setup(ECDSA_METHOD *ecdsa_method,
284                                  int (*ecdsa_sign_setup) (EC_KEY *eckey,
285                                                           BN_CTX *ctx,
286                                                           BIGNUM **kinv,
287                                                           BIGNUM **r))
288 {
289     ecdsa_method->ecdsa_sign_setup = ecdsa_sign_setup;
290 }
291
292 void ECDSA_METHOD_set_verify(ECDSA_METHOD *ecdsa_method,
293                              int (*ecdsa_do_verify) (const unsigned char
294                                                      *dgst, int dgst_len,
295                                                      const ECDSA_SIG *sig,
296                                                      EC_KEY *eckey))
297 {
298     ecdsa_method->ecdsa_do_verify = ecdsa_do_verify;
299 }
300
301 void ECDSA_METHOD_set_flags(ECDSA_METHOD *ecdsa_method, int flags)
302 {
303     ecdsa_method->flags = flags | ECDSA_METHOD_FLAG_ALLOCATED;
304 }
305
306 void ECDSA_METHOD_set_name(ECDSA_METHOD *ecdsa_method, char *name)
307 {
308     ecdsa_method->name = name;
309 }
310
311 void ECDSA_METHOD_free(ECDSA_METHOD *ecdsa_method)
312 {
313     if (!ecdsa_method)
314         return;
315     if (ecdsa_method->flags & ECDSA_METHOD_FLAG_ALLOCATED)
316         OPENSSL_free(ecdsa_method);
317 }
318
319 void ECDSA_METHOD_set_app_data(ECDSA_METHOD *ecdsa_method, void *app)
320 {
321     ecdsa_method->app_data = app;
322 }
323
324 void *ECDSA_METHOD_get_app_data(ECDSA_METHOD *ecdsa_method)
325 {
326     return ecdsa_method->app_data;
327 }