Fix EC_KEY initialization race.
[openssl.git] / crypto / ecdsa / ecs_ossl.c
1 /* crypto/ecdsa/ecs_ossl.c */
2 /*
3  * Written by Nils Larsch for the OpenSSL project
4  */
5 /* ====================================================================
6  * Copyright (c) 1998-2004 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer. 
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    openssl-core@OpenSSL.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  *
53  * This product includes cryptographic software written by Eric Young
54  * (eay@cryptsoft.com).  This product includes software written by Tim
55  * Hudson (tjh@cryptsoft.com).
56  *
57  */
58
59 #define OPENSSL_FIPSAPI
60
61 #include "ecs_locl.h"
62 #include <openssl/err.h>
63 #include <openssl/obj_mac.h>
64 #include <openssl/bn.h>
65
66 static ECDSA_SIG *ecdsa_do_sign(const unsigned char *dgst, int dlen, 
67                 const BIGNUM *, const BIGNUM *, EC_KEY *eckey);
68 static int ecdsa_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp, 
69                 BIGNUM **rp);
70 static int ecdsa_do_verify(const unsigned char *dgst, int dgst_len, 
71                 const ECDSA_SIG *sig, EC_KEY *eckey);
72
73 static ECDSA_METHOD openssl_ecdsa_meth = {
74         "OpenSSL ECDSA method",
75         ecdsa_do_sign,
76         ecdsa_sign_setup,
77         ecdsa_do_verify,
78 #if 0
79         NULL, /* init     */
80         NULL, /* finish   */
81 #endif
82         ECDSA_FLAG_FIPS_METHOD,    /* flags    */
83         NULL  /* app_data */
84 };
85
86 const ECDSA_METHOD *ECDSA_OpenSSL(void)
87 {
88         return &openssl_ecdsa_meth;
89 }
90
91 static int ecdsa_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp,
92                 BIGNUM **rp)
93 {
94         BN_CTX   *ctx = NULL;
95         BIGNUM   *k = NULL, *r = NULL, *order = NULL, *X = NULL;
96         EC_POINT *tmp_point=NULL;
97         const EC_GROUP *group;
98         int      ret = 0;
99
100         if (eckey == NULL || (group = EC_KEY_get0_group(eckey)) == NULL)
101         {
102                 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_PASSED_NULL_PARAMETER);
103                 return 0;
104         }
105
106         if (ctx_in == NULL) 
107         {
108                 if ((ctx = BN_CTX_new()) == NULL)
109                 {
110                         ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP,ERR_R_MALLOC_FAILURE);
111                         return 0;
112                 }
113         }
114         else
115                 ctx = ctx_in;
116
117         k     = BN_new();       /* this value is later returned in *kinvp */
118         r     = BN_new();       /* this value is later returned in *rp    */
119         order = BN_new();
120         X     = BN_new();
121         if (!k || !r || !order || !X)
122         {
123                 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_MALLOC_FAILURE);
124                 goto err;
125         }
126         if ((tmp_point = EC_POINT_new(group)) == NULL)
127         {
128                 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_EC_LIB);
129                 goto err;
130         }
131         if (!EC_GROUP_get_order(group, order, ctx))
132         {
133                 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_EC_LIB);
134                 goto err;
135         }
136
137 #ifdef OPENSSL_FIPS
138         if (!fips_check_ec_prng(eckey))
139                 goto err;
140 #endif
141         
142         do
143         {
144                 /* get random k */      
145                 do
146                         if (!BN_rand_range(k, order))
147                         {
148                                 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP,
149                                  ECDSA_R_RANDOM_NUMBER_GENERATION_FAILED);      
150                                 goto err;
151                         }
152                 while (BN_is_zero(k));
153
154                 /* We do not want timing information to leak the length of k,
155                  * so we compute G*k using an equivalent scalar of fixed
156                  * bit-length. */
157
158                 if (!BN_add(k, k, order)) goto err;
159                 if (BN_num_bits(k) <= BN_num_bits(order))
160                         if (!BN_add(k, k, order)) goto err;
161
162                 /* compute r the x-coordinate of generator * k */
163                 if (!EC_POINT_mul(group, tmp_point, k, NULL, NULL, ctx))
164                 {
165                         ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_EC_LIB);
166                         goto err;
167                 }
168                 if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) == NID_X9_62_prime_field)
169                 {
170                         if (!EC_POINT_get_affine_coordinates_GFp(group,
171                                 tmp_point, X, NULL, ctx))
172                         {
173                                 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP,ERR_R_EC_LIB);
174                                 goto err;
175                         }
176                 }
177 #ifndef OPENSSL_NO_EC2M
178                 else /* NID_X9_62_characteristic_two_field */
179                 {
180                         if (!EC_POINT_get_affine_coordinates_GF2m(group,
181                                 tmp_point, X, NULL, ctx))
182                         {
183                                 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP,ERR_R_EC_LIB);
184                                 goto err;
185                         }
186                 }
187 #endif
188                 if (!BN_nnmod(r, X, order, ctx))
189                 {
190                         ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_BN_LIB);
191                         goto err;
192                 }
193         }
194         while (BN_is_zero(r));
195
196         /* compute the inverse of k */
197         if (!BN_mod_inverse(k, k, order, ctx))
198         {
199                 ECDSAerr(ECDSA_F_ECDSA_SIGN_SETUP, ERR_R_BN_LIB);
200                 goto err;       
201         }
202         /* clear old values if necessary */
203         if (*rp != NULL)
204                 BN_clear_free(*rp);
205         if (*kinvp != NULL) 
206                 BN_clear_free(*kinvp);
207         /* save the pre-computed values  */
208         *rp    = r;
209         *kinvp = k;
210         ret = 1;
211 err:
212         if (!ret)
213         {
214                 if (k != NULL) BN_clear_free(k);
215                 if (r != NULL) BN_clear_free(r);
216         }
217         if (ctx_in == NULL) 
218                 BN_CTX_free(ctx);
219         if (order != NULL)
220                 BN_free(order);
221         if (tmp_point != NULL) 
222                 EC_POINT_free(tmp_point);
223         if (X)
224                 BN_clear_free(X);
225         return(ret);
226 }
227
228
229 static ECDSA_SIG *ecdsa_do_sign(const unsigned char *dgst, int dgst_len, 
230                 const BIGNUM *in_kinv, const BIGNUM *in_r, EC_KEY *eckey)
231 {
232         int     ok = 0, i;
233         BIGNUM *kinv=NULL, *s, *m=NULL,*tmp=NULL,*order=NULL;
234         const BIGNUM *ckinv;
235         BN_CTX     *ctx = NULL;
236         const EC_GROUP   *group;
237         ECDSA_SIG  *ret;
238         ECDSA_DATA *ecdsa;
239         const BIGNUM *priv_key;
240
241 #ifdef OPENSSL_FIPS
242         if(FIPS_selftest_failed())
243                 {
244                 FIPSerr(FIPS_F_ECDSA_DO_SIGN,FIPS_R_FIPS_SELFTEST_FAILED);
245                 return NULL;
246                 }
247 #endif
248
249         ecdsa    = ecdsa_check(eckey);
250         group    = EC_KEY_get0_group(eckey);
251         priv_key = EC_KEY_get0_private_key(eckey);
252         
253         if (group == NULL || priv_key == NULL || ecdsa == NULL)
254         {
255                 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_PASSED_NULL_PARAMETER);
256                 return NULL;
257         }
258
259 #ifdef OPENSSL_FIPS
260         if (!fips_check_ec_prng(eckey))
261                 return NULL;
262 #endif
263
264         ret = ECDSA_SIG_new();
265         if (!ret)
266         {
267                 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_MALLOC_FAILURE);
268                 return NULL;
269         }
270         s = ret->s;
271
272         if ((ctx = BN_CTX_new()) == NULL || (order = BN_new()) == NULL ||
273                 (tmp = BN_new()) == NULL || (m = BN_new()) == NULL)
274         {
275                 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_MALLOC_FAILURE);
276                 goto err;
277         }
278
279         if (!EC_GROUP_get_order(group, order, ctx))
280         {
281                 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_EC_LIB);
282                 goto err;
283         }
284         i = BN_num_bits(order);
285         /* Need to truncate digest if it is too long: first truncate whole
286          * bytes.
287          */
288         if (8 * dgst_len > i)
289                 dgst_len = (i + 7)/8;
290         if (!BN_bin2bn(dgst, dgst_len, m))
291         {
292                 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_BN_LIB);
293                 goto err;
294         }
295         /* If still too long truncate remaining bits with a shift */
296         if ((8 * dgst_len > i) && !BN_rshift(m, m, 8 - (i & 0x7)))
297         {
298                 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_BN_LIB);
299                 goto err;
300         }
301         do
302         {
303                 if (in_kinv == NULL || in_r == NULL)
304                 {
305                         if (!ecdsa->meth->ecdsa_sign_setup(eckey, ctx,
306                                                                 &kinv, &ret->r))
307                         {
308                                 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN,ERR_R_ECDSA_LIB);
309                                 goto err;
310                         }
311                         ckinv = kinv;
312                 }
313                 else
314                 {
315                         ckinv  = in_kinv;
316                         if (BN_copy(ret->r, in_r) == NULL)
317                         {
318                                 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_MALLOC_FAILURE);
319                                 goto err;
320                         }
321                 }
322
323                 if (!BN_mod_mul(tmp, priv_key, ret->r, order, ctx))
324                 {
325                         ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_BN_LIB);
326                         goto err;
327                 }
328                 if (!BN_mod_add_quick(s, tmp, m, order))
329                 {
330                         ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_BN_LIB);
331                         goto err;
332                 }
333                 if (!BN_mod_mul(s, s, ckinv, order, ctx))
334                 {
335                         ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ERR_R_BN_LIB);
336                         goto err;
337                 }
338                 if (BN_is_zero(s))
339                 {
340                         /* if kinv and r have been supplied by the caller
341                          * don't to generate new kinv and r values */
342                         if (in_kinv != NULL && in_r != NULL)
343                         {
344                                 ECDSAerr(ECDSA_F_ECDSA_DO_SIGN, ECDSA_R_NEED_NEW_SETUP_VALUES);
345                                 goto err;
346                         }
347                 }
348                 else
349                         /* s != 0 => we have a valid signature */
350                         break;
351         }
352         while (1);
353
354         ok = 1;
355 err:
356         if (!ok)
357         {
358                 ECDSA_SIG_free(ret);
359                 ret = NULL;
360         }
361         if (ctx)
362                 BN_CTX_free(ctx);
363         if (m)
364                 BN_clear_free(m);
365         if (tmp)
366                 BN_clear_free(tmp);
367         if (order)
368                 BN_free(order);
369         if (kinv)
370                 BN_clear_free(kinv);
371         return ret;
372 }
373
374 static int ecdsa_do_verify(const unsigned char *dgst, int dgst_len,
375                 const ECDSA_SIG *sig, EC_KEY *eckey)
376 {
377         int ret = -1, i;
378         BN_CTX   *ctx;
379         BIGNUM   *order, *u1, *u2, *m, *X;
380         EC_POINT *point = NULL;
381         const EC_GROUP *group;
382         const EC_POINT *pub_key;
383
384 #ifdef OPENSSL_FIPS
385         if(FIPS_selftest_failed())
386                 {
387                 FIPSerr(FIPS_F_ECDSA_DO_VERIFY,FIPS_R_FIPS_SELFTEST_FAILED);
388                 return -1;
389                 }
390 #endif
391
392         /* check input values */
393         if (eckey == NULL || (group = EC_KEY_get0_group(eckey)) == NULL ||
394             (pub_key = EC_KEY_get0_public_key(eckey)) == NULL || sig == NULL)
395         {
396                 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ECDSA_R_MISSING_PARAMETERS);
397                 return -1;
398         }
399
400         ctx = BN_CTX_new();
401         if (!ctx)
402         {
403                 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_MALLOC_FAILURE);
404                 return -1;
405         }
406         BN_CTX_start(ctx);
407         order = BN_CTX_get(ctx);        
408         u1    = BN_CTX_get(ctx);
409         u2    = BN_CTX_get(ctx);
410         m     = BN_CTX_get(ctx);
411         X     = BN_CTX_get(ctx);
412         if (!X)
413         {
414                 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
415                 goto err;
416         }
417         
418         if (!EC_GROUP_get_order(group, order, ctx))
419         {
420                 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_EC_LIB);
421                 goto err;
422         }
423
424         if (BN_is_zero(sig->r)          || BN_is_negative(sig->r) || 
425             BN_ucmp(sig->r, order) >= 0 || BN_is_zero(sig->s)  ||
426             BN_is_negative(sig->s)      || BN_ucmp(sig->s, order) >= 0)
427         {
428                 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ECDSA_R_BAD_SIGNATURE);
429                 ret = 0;        /* signature is invalid */
430                 goto err;
431         }
432         /* calculate tmp1 = inv(S) mod order */
433         if (!BN_mod_inverse(u2, sig->s, order, ctx))
434         {
435                 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
436                 goto err;
437         }
438         /* digest -> m */
439         i = BN_num_bits(order);
440         /* Need to truncate digest if it is too long: first truncate whole
441          * bytes.
442          */
443         if (8 * dgst_len > i)
444                 dgst_len = (i + 7)/8;
445         if (!BN_bin2bn(dgst, dgst_len, m))
446         {
447                 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
448                 goto err;
449         }
450         /* If still too long truncate remaining bits with a shift */
451         if ((8 * dgst_len > i) && !BN_rshift(m, m, 8 - (i & 0x7)))
452         {
453                 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
454                 goto err;
455         }
456         /* u1 = m * tmp mod order */
457         if (!BN_mod_mul(u1, m, u2, order, ctx))
458         {
459                 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
460                 goto err;
461         }
462         /* u2 = r * w mod q */
463         if (!BN_mod_mul(u2, sig->r, u2, order, ctx))
464         {
465                 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
466                 goto err;
467         }
468
469         if ((point = EC_POINT_new(group)) == NULL)
470         {
471                 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_MALLOC_FAILURE);
472                 goto err;
473         }
474         if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx))
475         {
476                 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_EC_LIB);
477                 goto err;
478         }
479         if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) == NID_X9_62_prime_field)
480         {
481                 if (!EC_POINT_get_affine_coordinates_GFp(group,
482                         point, X, NULL, ctx))
483                 {
484                         ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_EC_LIB);
485                         goto err;
486                 }
487         }
488 #ifndef OPENSSL_NO_EC2M
489         else /* NID_X9_62_characteristic_two_field */
490         {
491                 if (!EC_POINT_get_affine_coordinates_GF2m(group,
492                         point, X, NULL, ctx))
493                 {
494                         ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_EC_LIB);
495                         goto err;
496                 }
497         }
498 #endif  
499         if (!BN_nnmod(u1, X, order, ctx))
500         {
501                 ECDSAerr(ECDSA_F_ECDSA_DO_VERIFY, ERR_R_BN_LIB);
502                 goto err;
503         }
504         /*  if the signature is correct u1 is equal to sig->r */
505         ret = (BN_ucmp(u1, sig->r) == 0);
506 err:
507         BN_CTX_end(ctx);
508         BN_CTX_free(ctx);
509         if (point)
510                 EC_POINT_free(point);
511         return ret;
512 }
513
514 #ifdef OPENSSL_FIPSCANISTER
515 /* FIPS stanadlone version of ecdsa_check: just return FIPS method */
516 ECDSA_DATA *fips_ecdsa_check(EC_KEY *key)
517         {
518         static ECDSA_DATA rv = {
519                 0,0,0,
520                 &openssl_ecdsa_meth
521                 };
522         return &rv;
523         }
524 /* Standalone digest sign and verify */
525 int FIPS_ecdsa_verify_digest(EC_KEY *key,
526                         const unsigned char *dig, int dlen, ECDSA_SIG *s)
527         {
528         ECDSA_DATA *ecdsa = ecdsa_check(key);
529         if (ecdsa == NULL)
530                 return 0;
531         return ecdsa->meth->ecdsa_do_verify(dig, dlen, s, key);
532         }
533 ECDSA_SIG * FIPS_ecdsa_sign_digest(EC_KEY *key,
534                                         const unsigned char *dig, int dlen)
535         {
536         ECDSA_DATA *ecdsa = ecdsa_check(key);
537         if (ecdsa == NULL)
538                 return NULL;
539         return ecdsa->meth->ecdsa_do_sign(dig, dlen, NULL, NULL, key);
540         }
541 #endif