os/ossrv/ssl/libcrypto/src/crypto/dsa/dsa_ossl.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /* crypto/dsa/dsa_ossl.c */
     2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
     3  * All rights reserved.
     4  *
     5  * This package is an SSL implementation written
     6  * by Eric Young (eay@cryptsoft.com).
     7  * The implementation was written so as to conform with Netscapes SSL.
     8  * 
     9  * This library is free for commercial and non-commercial use as long as
    10  * the following conditions are aheared to.  The following conditions
    11  * apply to all code found in this distribution, be it the RC4, RSA,
    12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
    13  * included with this distribution is covered by the same copyright terms
    14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
    15  * 
    16  * Copyright remains Eric Young's, and as such any Copyright notices in
    17  * the code are not to be removed.
    18  * If this package is used in a product, Eric Young should be given attribution
    19  * as the author of the parts of the library used.
    20  * This can be in the form of a textual message at program startup or
    21  * in documentation (online or textual) provided with the package.
    22  * 
    23  * Redistribution and use in source and binary forms, with or without
    24  * modification, are permitted provided that the following conditions
    25  * are met:
    26  * 1. Redistributions of source code must retain the copyright
    27  *    notice, this list of conditions and the following disclaimer.
    28  * 2. Redistributions in binary form must reproduce the above copyright
    29  *    notice, this list of conditions and the following disclaimer in the
    30  *    documentation and/or other materials provided with the distribution.
    31  * 3. All advertising materials mentioning features or use of this software
    32  *    must display the following acknowledgement:
    33  *    "This product includes cryptographic software written by
    34  *     Eric Young (eay@cryptsoft.com)"
    35  *    The word 'cryptographic' can be left out if the rouines from the library
    36  *    being used are not cryptographic related :-).
    37  * 4. If you include any Windows specific code (or a derivative thereof) from 
    38  *    the apps directory (application code) you must include an acknowledgement:
    39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
    40  * 
    41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
    42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
    45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    51  * SUCH DAMAGE.
    52  * 
    53  * The licence and distribution terms for any publically available version or
    54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
    55  * copied and put under another distribution licence
    56  * [including the GNU Public Licence.]
    57  */
    58 
    59 /* Original version from Steven Schoch <schoch@sheba.arc.nasa.gov> */
    60 /*
    61  © Portions copyright (c) 2006 Nokia Corporation.  All rights reserved.
    62  */
    63 
    64 #include <stdio.h>
    65 #include "cryptlib.h"
    66 #include <openssl/bn.h>
    67 #include <openssl/dsa.h>
    68 #include <openssl/rand.h>
    69 #include <openssl/asn1.h>
    70 #if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
    71 #include "libcrypto_wsd_macros.h"
    72 #include "libcrypto_wsd.h"
    73 #endif
    74 
    75 static DSA_SIG *dsa_do_sign(const unsigned char *dgst, int dlen, DSA *dsa);
    76 static int dsa_sign_setup(DSA *dsa, BN_CTX *ctx_in, BIGNUM **kinvp, BIGNUM **rp);
    77 static int dsa_do_verify(const unsigned char *dgst, int dgst_len, DSA_SIG *sig,
    78 		  DSA *dsa);
    79 static int dsa_init(DSA *dsa);
    80 static int dsa_finish(DSA *dsa);
    81 
    82 #ifndef EMULATOR
    83 static DSA_METHOD openssl_dsa_meth = {
    84 "OpenSSL DSA method",
    85 dsa_do_sign,
    86 dsa_sign_setup,
    87 dsa_do_verify,
    88 NULL, /* dsa_mod_exp, */
    89 NULL, /* dsa_bn_mod_exp, */
    90 dsa_init,
    91 dsa_finish,
    92 0,
    93 NULL,
    94 NULL,
    95 NULL
    96 };
    97 #else
    98 GET_STATIC_VAR_FROM_TLS(openssl_dsa_meth,dsa_ossl,DSA_METHOD)
    99 #define openssl_dsa_meth (*GET_WSD_VAR_NAME(openssl_dsa_meth,dsa_ossl, s)())
   100 const DSA_METHOD temp_s_openssl_dsa_meth = {
   101 "OpenSSL DSA method",
   102 dsa_do_sign,
   103 dsa_sign_setup,
   104 dsa_do_verify,
   105 NULL, /* dsa_mod_exp, */
   106 NULL, /* dsa_bn_mod_exp, */
   107 dsa_init,
   108 dsa_finish,
   109 0,
   110 NULL,
   111 NULL,
   112 NULL
   113 };
   114 #endif
   115 
   116 /* These macro wrappers replace attempts to use the dsa_mod_exp() and
   117  * bn_mod_exp() handlers in the DSA_METHOD structure. We avoid the problem of
   118  * having a the macro work as an expression by bundling an "err_instr". So;
   119  * 
   120  *     if (!dsa->meth->bn_mod_exp(dsa, r,dsa->g,&k,dsa->p,ctx,
   121  *                 dsa->method_mont_p)) goto err;
   122  *
   123  * can be replaced by;
   124  *
   125  *     DSA_BN_MOD_EXP(goto err, dsa, r, dsa->g, &k, dsa->p, ctx,
   126  *                 dsa->method_mont_p);
   127  */
   128 
   129 #define DSA_MOD_EXP(err_instr,dsa,rr,a1,p1,a2,p2,m,ctx,in_mont) \
   130 	do { \
   131 	int _tmp_res53; \
   132 	if((dsa)->meth->dsa_mod_exp) \
   133 		_tmp_res53 = (dsa)->meth->dsa_mod_exp((dsa), (rr), (a1), (p1), \
   134 				(a2), (p2), (m), (ctx), (in_mont)); \
   135 	else \
   136 		_tmp_res53 = BN_mod_exp2_mont((rr), (a1), (p1), (a2), (p2), \
   137 				(m), (ctx), (in_mont)); \
   138 	if(!_tmp_res53) err_instr; \
   139 	} while(0)
   140 #define DSA_BN_MOD_EXP(err_instr,dsa,r,a,p,m,ctx,m_ctx) \
   141 	do { \
   142 	int _tmp_res53; \
   143 	if((dsa)->meth->bn_mod_exp) \
   144 		_tmp_res53 = (dsa)->meth->bn_mod_exp((dsa), (r), (a), (p), \
   145 				(m), (ctx), (m_ctx)); \
   146 	else \
   147 		_tmp_res53 = BN_mod_exp_mont((r), (a), (p), (m), (ctx), (m_ctx)); \
   148 	if(!_tmp_res53) err_instr; \
   149 	} while(0)
   150 
   151 EXPORT_C const DSA_METHOD *DSA_OpenSSL(void)
   152 {
   153 	return &openssl_dsa_meth;
   154 }
   155 
   156 static DSA_SIG *dsa_do_sign(const unsigned char *dgst, int dlen, DSA *dsa)
   157 	{
   158 	BIGNUM *kinv=NULL,*r=NULL,*s=NULL;
   159 	BIGNUM m;
   160 	BIGNUM xr;
   161 	BN_CTX *ctx=NULL;
   162 	int i,reason=ERR_R_BN_LIB;
   163 	DSA_SIG *ret=NULL;
   164 
   165 	BN_init(&m);
   166 	BN_init(&xr);
   167 
   168 	if (!dsa->p || !dsa->q || !dsa->g)
   169 		{
   170 		reason=DSA_R_MISSING_PARAMETERS;
   171 		goto err;
   172 		}
   173 
   174 	s=BN_new();
   175 	if (s == NULL) goto err;
   176 
   177 	i=BN_num_bytes(dsa->q); /* should be 20 */
   178 	if ((dlen > i) || (dlen > 50))
   179 		{
   180 		reason=DSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE;
   181 		goto err;
   182 		}
   183 
   184 	ctx=BN_CTX_new();
   185 	if (ctx == NULL) goto err;
   186 
   187 	if ((dsa->kinv == NULL) || (dsa->r == NULL))
   188 		{
   189 		if (!DSA_sign_setup(dsa,ctx,&kinv,&r)) goto err;
   190 		}
   191 	else
   192 		{
   193 		kinv=dsa->kinv;
   194 		dsa->kinv=NULL;
   195 		r=dsa->r;
   196 		dsa->r=NULL;
   197 		}
   198 
   199 	if (BN_bin2bn(dgst,dlen,&m) == NULL) goto err;
   200 
   201 	/* Compute  s = inv(k) (m + xr) mod q */
   202 	if (!BN_mod_mul(&xr,dsa->priv_key,r,dsa->q,ctx)) goto err;/* s = xr */
   203 	if (!BN_add(s, &xr, &m)) goto err;		/* s = m + xr */
   204 	if (BN_cmp(s,dsa->q) > 0)
   205 		BN_sub(s,s,dsa->q);
   206 	if (!BN_mod_mul(s,s,kinv,dsa->q,ctx)) goto err;
   207 
   208 	ret=DSA_SIG_new();
   209 	if (ret == NULL) goto err;
   210 	ret->r = r;
   211 	ret->s = s;
   212 	
   213 err:
   214 	if (!ret)
   215 		{
   216 		DSAerr(DSA_F_DSA_DO_SIGN,reason);
   217 		BN_free(r);
   218 		BN_free(s);
   219 		}
   220 	if (ctx != NULL) BN_CTX_free(ctx);
   221 	BN_clear_free(&m);
   222 	BN_clear_free(&xr);
   223 	if (kinv != NULL) /* dsa->kinv is NULL now if we used it */
   224 	    BN_clear_free(kinv);
   225 	return(ret);
   226 	}
   227 
   228 static int dsa_sign_setup(DSA *dsa, BN_CTX *ctx_in, BIGNUM **kinvp, BIGNUM **rp)
   229 	{
   230 	BN_CTX *ctx;
   231 	BIGNUM k,kq,*K,*kinv=NULL,*r=NULL;
   232 	int ret=0;
   233 
   234 	if (!dsa->p || !dsa->q || !dsa->g)
   235 		{
   236 		DSAerr(DSA_F_DSA_SIGN_SETUP,DSA_R_MISSING_PARAMETERS);
   237 		return 0;
   238 		}
   239 
   240 	BN_init(&k);
   241 	BN_init(&kq);
   242 
   243 	if (ctx_in == NULL)
   244 		{
   245 		if ((ctx=BN_CTX_new()) == NULL) goto err;
   246 		}
   247 	else
   248 		ctx=ctx_in;
   249 
   250 	if ((r=BN_new()) == NULL) goto err;
   251 
   252 	/* Get random k */
   253 	do
   254 		if (!BN_rand_range(&k, dsa->q)) goto err;
   255 	while (BN_is_zero(&k));
   256 	if ((dsa->flags & DSA_FLAG_NO_EXP_CONSTTIME) == 0)
   257 		{
   258 		BN_set_flags(&k, BN_FLG_CONSTTIME);
   259 		}
   260 
   261 	if (dsa->flags & DSA_FLAG_CACHE_MONT_P)
   262 		{
   263 		if (!BN_MONT_CTX_set_locked(&dsa->method_mont_p,
   264 						CRYPTO_LOCK_DSA,
   265 						dsa->p, ctx))
   266 			goto err;
   267 		}
   268 
   269 	/* Compute r = (g^k mod p) mod q */
   270 
   271 	if ((dsa->flags & DSA_FLAG_NO_EXP_CONSTTIME) == 0)
   272 		{
   273 		if (!BN_copy(&kq, &k)) goto err;
   274 
   275 		/* We do not want timing information to leak the length of k,
   276 		 * so we compute g^k using an equivalent exponent of fixed length.
   277 		 *
   278 		 * (This is a kludge that we need because the BN_mod_exp_mont()
   279 		 * does not let us specify the desired timing behaviour.) */
   280 
   281 		if (!BN_add(&kq, &kq, dsa->q)) goto err;
   282 		if (BN_num_bits(&kq) <= BN_num_bits(dsa->q))
   283 			{
   284 			if (!BN_add(&kq, &kq, dsa->q)) goto err;
   285 			}
   286 
   287 		K = &kq;
   288 		}
   289 	else
   290 		{
   291 		K = &k;
   292 		}
   293 	DSA_BN_MOD_EXP(goto err, dsa, r, dsa->g, K, dsa->p, ctx,
   294 			dsa->method_mont_p);
   295 	if (!BN_mod(r,r,dsa->q,ctx)) goto err;
   296 
   297 	/* Compute  part of 's = inv(k) (m + xr) mod q' */
   298 	if ((kinv=BN_mod_inverse(NULL,&k,dsa->q,ctx)) == NULL) goto err;
   299 
   300 	if (*kinvp != NULL) BN_clear_free(*kinvp);
   301 	*kinvp=kinv;
   302 	kinv=NULL;
   303 	if (*rp != NULL) BN_clear_free(*rp);
   304 	*rp=r;
   305 	ret=1;
   306 err:
   307 	if (!ret)
   308 		{
   309 		DSAerr(DSA_F_DSA_SIGN_SETUP,ERR_R_BN_LIB);
   310 		if (kinv != NULL) BN_clear_free(kinv);
   311 		if (r != NULL) BN_clear_free(r);
   312 		}
   313 	if (ctx_in == NULL) BN_CTX_free(ctx);
   314 	if (kinv != NULL) BN_clear_free(kinv);
   315 	BN_clear_free(&k);
   316 	BN_clear_free(&kq);
   317 	return(ret);
   318 	}
   319 
   320 static int dsa_do_verify(const unsigned char *dgst, int dgst_len, DSA_SIG *sig,
   321 		  DSA *dsa)
   322 	{
   323 	BN_CTX *ctx;
   324 	BIGNUM u1,u2,t1;
   325 	BN_MONT_CTX *mont=NULL;
   326 	int ret = -1;
   327 	if (!dsa->p || !dsa->q || !dsa->g)
   328 		{
   329 		DSAerr(DSA_F_DSA_DO_VERIFY,DSA_R_MISSING_PARAMETERS);
   330 		return -1;
   331 		}
   332 
   333 	if (BN_num_bits(dsa->q) != 160)
   334 		{
   335 		DSAerr(DSA_F_DSA_DO_VERIFY,DSA_R_BAD_Q_VALUE);
   336 		return -1;
   337 		}
   338 
   339 	if (BN_num_bits(dsa->p) > OPENSSL_DSA_MAX_MODULUS_BITS)
   340 		{
   341 		DSAerr(DSA_F_DSA_DO_VERIFY,DSA_R_MODULUS_TOO_LARGE);
   342 		return -1;
   343 		}
   344 
   345 	BN_init(&u1);
   346 	BN_init(&u2);
   347 	BN_init(&t1);
   348 
   349 	if ((ctx=BN_CTX_new()) == NULL) goto err;
   350 
   351 	if (BN_is_zero(sig->r) || BN_is_negative(sig->r) ||
   352 	    BN_ucmp(sig->r, dsa->q) >= 0)
   353 		{
   354 		ret = 0;
   355 		goto err;
   356 		}
   357 	if (BN_is_zero(sig->s) || BN_is_negative(sig->s) ||
   358 	    BN_ucmp(sig->s, dsa->q) >= 0)
   359 		{
   360 		ret = 0;
   361 		goto err;
   362 		}
   363 
   364 	/* Calculate W = inv(S) mod Q
   365 	 * save W in u2 */
   366 	if ((BN_mod_inverse(&u2,sig->s,dsa->q,ctx)) == NULL) goto err;
   367 
   368 	/* save M in u1 */
   369 	if (BN_bin2bn(dgst,dgst_len,&u1) == NULL) goto err;
   370 
   371 	/* u1 = M * w mod q */
   372 	if (!BN_mod_mul(&u1,&u1,&u2,dsa->q,ctx)) goto err;
   373 
   374 	/* u2 = r * w mod q */
   375 	if (!BN_mod_mul(&u2,sig->r,&u2,dsa->q,ctx)) goto err;
   376 
   377 
   378 	if (dsa->flags & DSA_FLAG_CACHE_MONT_P)
   379 		{
   380 		mont = BN_MONT_CTX_set_locked(&dsa->method_mont_p,
   381 					CRYPTO_LOCK_DSA, dsa->p, ctx);
   382 		if (!mont)
   383 			goto err;
   384 		}
   385 
   386 
   387 	DSA_MOD_EXP(goto err, dsa, &t1, dsa->g, &u1, dsa->pub_key, &u2, dsa->p, ctx, mont);
   388 	/* BN_copy(&u1,&t1); */
   389 	/* let u1 = u1 mod q */
   390 	if (!BN_mod(&u1,&t1,dsa->q,ctx)) goto err;
   391 
   392 	/* V is now in u1.  If the signature is correct, it will be
   393 	 * equal to R. */
   394 	ret=(BN_ucmp(&u1, sig->r) == 0);
   395 
   396 	err:
   397 	/* XXX: surely this is wrong - if ret is 0, it just didn't verify;
   398 	   there is no error in BN. Test should be ret == -1 (Ben) */
   399 	if (ret != 1) DSAerr(DSA_F_DSA_DO_VERIFY,ERR_R_BN_LIB);
   400 	if (ctx != NULL) BN_CTX_free(ctx);
   401 	BN_free(&u1);
   402 	BN_free(&u2);
   403 	BN_free(&t1);
   404 	return(ret);
   405 	}
   406 
   407 static int dsa_init(DSA *dsa)
   408 {
   409 	dsa->flags|=DSA_FLAG_CACHE_MONT_P;
   410 	return(1);
   411 }
   412 
   413 static int dsa_finish(DSA *dsa)
   414 {
   415 	if(dsa->method_mont_p)
   416 		BN_MONT_CTX_free(dsa->method_mont_p);
   417 	return(1);
   418 }
   419