Templatize util/domd
[openssl.git] / crypto / dsa / dsa_ossl.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 <openssl/sha.h>
64 #include <openssl/dsa.h>
65 #include <openssl/rand.h>
66 #include <openssl/asn1.h>
67
68 static DSA_SIG *dsa_do_sign(const unsigned char *dgst, int dlen, DSA *dsa);
69 static int dsa_sign_setup_no_digest(DSA *dsa, BN_CTX *ctx_in, BIGNUM **kinvp,
70                                     BIGNUM **rp);
71 static int dsa_sign_setup(DSA *dsa, BN_CTX *ctx_in, BIGNUM **kinvp,
72                           BIGNUM **rp, const unsigned char *dgst, int dlen);
73 static int dsa_do_verify(const unsigned char *dgst, int dgst_len,
74                          DSA_SIG *sig, DSA *dsa);
75 static int dsa_init(DSA *dsa);
76 static int dsa_finish(DSA *dsa);
77
78 static DSA_METHOD openssl_dsa_meth = {
79     "OpenSSL DSA method",
80     dsa_do_sign,
81     dsa_sign_setup_no_digest,
82     dsa_do_verify,
83     NULL,                       /* dsa_mod_exp, */
84     NULL,                       /* dsa_bn_mod_exp, */
85     dsa_init,
86     dsa_finish,
87     DSA_FLAG_FIPS_METHOD,
88     NULL,
89     NULL,
90     NULL
91 };
92
93 /*-
94  * These macro wrappers replace attempts to use the dsa_mod_exp() and
95  * bn_mod_exp() handlers in the DSA_METHOD structure. We avoid the problem of
96  * having a the macro work as an expression by bundling an "err_instr". So;
97  *
98  *     if (!dsa->meth->bn_mod_exp(dsa, r,dsa->g,&k,dsa->p,ctx,
99  *                 dsa->method_mont_p)) goto err;
100  *
101  * can be replaced by;
102  *
103  *     DSA_BN_MOD_EXP(goto err, dsa, r, dsa->g, &k, dsa->p, ctx,
104  *                 dsa->method_mont_p);
105  */
106
107 #define DSA_MOD_EXP(err_instr,dsa,rr,a1,p1,a2,p2,m,ctx,in_mont) \
108         do { \
109         int _tmp_res53; \
110         if ((dsa)->meth->dsa_mod_exp) \
111                 _tmp_res53 = (dsa)->meth->dsa_mod_exp((dsa), (rr), (a1), (p1), \
112                                 (a2), (p2), (m), (ctx), (in_mont)); \
113         else \
114                 _tmp_res53 = BN_mod_exp2_mont((rr), (a1), (p1), (a2), (p2), \
115                                 (m), (ctx), (in_mont)); \
116         if (!_tmp_res53) err_instr; \
117         } while(0)
118 #define DSA_BN_MOD_EXP(err_instr,dsa,r,a,p,m,ctx,m_ctx) \
119         do { \
120         int _tmp_res53; \
121         if ((dsa)->meth->bn_mod_exp) \
122                 _tmp_res53 = (dsa)->meth->bn_mod_exp((dsa), (r), (a), (p), \
123                                 (m), (ctx), (m_ctx)); \
124         else \
125                 _tmp_res53 = BN_mod_exp_mont((r), (a), (p), (m), (ctx), (m_ctx)); \
126         if (!_tmp_res53) err_instr; \
127         } while(0)
128
129 const DSA_METHOD *DSA_OpenSSL(void)
130 {
131     return &openssl_dsa_meth;
132 }
133
134 static DSA_SIG *dsa_do_sign(const unsigned char *dgst, int dlen, DSA *dsa)
135 {
136     BIGNUM *kinv = NULL, *r = NULL, *s = NULL;
137     BIGNUM *m;
138     BIGNUM *xr;
139     BN_CTX *ctx = NULL;
140     int reason = ERR_R_BN_LIB;
141     DSA_SIG *ret = NULL;
142     int noredo = 0;
143
144     m = BN_new();
145     xr = BN_new();
146     if (m == NULL || xr == NULL)
147         goto err;
148
149     if (!dsa->p || !dsa->q || !dsa->g) {
150         reason = DSA_R_MISSING_PARAMETERS;
151         goto err;
152     }
153
154     s = BN_new();
155     if (s == NULL)
156         goto err;
157     ctx = BN_CTX_new();
158     if (ctx == NULL)
159         goto err;
160  redo:
161     if ((dsa->kinv == NULL) || (dsa->r == NULL)) {
162         if (!dsa_sign_setup(dsa, ctx, &kinv, &r, dgst, dlen))
163             goto err;
164     } else {
165         kinv = dsa->kinv;
166         dsa->kinv = NULL;
167         r = dsa->r;
168         dsa->r = NULL;
169         noredo = 1;
170     }
171
172     if (dlen > BN_num_bytes(dsa->q))
173         /*
174          * if the digest length is greater than the size of q use the
175          * BN_num_bits(dsa->q) leftmost bits of the digest, see fips 186-3,
176          * 4.2
177          */
178         dlen = BN_num_bytes(dsa->q);
179     if (BN_bin2bn(dgst, dlen, m) == NULL)
180         goto err;
181
182     /* Compute  s = inv(k) (m + xr) mod q */
183     if (!BN_mod_mul(xr, dsa->priv_key, r, dsa->q, ctx))
184         goto err;               /* s = xr */
185     if (!BN_add(s, xr, m))
186         goto err;               /* s = m + xr */
187     if (BN_cmp(s, dsa->q) > 0)
188         if (!BN_sub(s, s, dsa->q))
189             goto err;
190     if (!BN_mod_mul(s, s, kinv, dsa->q, ctx))
191         goto err;
192
193     /*
194      * Redo if r or s is zero as required by FIPS 186-3: this is very
195      * unlikely.
196      */
197     if (BN_is_zero(r) || BN_is_zero(s)) {
198         if (noredo) {
199             reason = DSA_R_NEED_NEW_SETUP_VALUES;
200             goto err;
201         }
202         goto redo;
203     }
204     ret = DSA_SIG_new();
205     if (ret == NULL)
206         goto err;
207     ret->r = r;
208     ret->s = s;
209
210  err:
211     if (ret == NULL) {
212         DSAerr(DSA_F_DSA_DO_SIGN, reason);
213         BN_free(r);
214         BN_free(s);
215     }
216     BN_CTX_free(ctx);
217     BN_clear_free(m);
218     BN_clear_free(xr);
219     BN_clear_free(kinv);
220     return (ret);
221 }
222
223 static int dsa_sign_setup_no_digest(DSA *dsa, BN_CTX *ctx_in,
224                                     BIGNUM **kinvp, BIGNUM **rp)
225 {
226     return dsa_sign_setup(dsa, ctx_in, kinvp, rp, NULL, 0);
227 }
228
229 static int dsa_sign_setup(DSA *dsa, BN_CTX *ctx_in,
230                           BIGNUM **kinvp, BIGNUM **rp,
231                           const unsigned char *dgst, int dlen)
232 {
233     BN_CTX *ctx = NULL;
234     BIGNUM *k, *kq, *K, *kinv = NULL, *r = NULL;
235     int ret = 0;
236
237     if (!dsa->p || !dsa->q || !dsa->g) {
238         DSAerr(DSA_F_DSA_SIGN_SETUP, DSA_R_MISSING_PARAMETERS);
239         return 0;
240     }
241
242     k = BN_new();
243     kq = BN_new();
244     if (k == NULL || kq == NULL)
245         goto err;
246
247     if (ctx_in == NULL) {
248         if ((ctx = BN_CTX_new()) == NULL)
249             goto err;
250     } else
251         ctx = ctx_in;
252
253     if ((r = BN_new()) == NULL)
254         goto err;
255
256     /* Get random k */
257     do {
258         if (dgst != NULL) {
259             /*
260              * We calculate k from SHA512(private_key + H(message) + random).
261              * This protects the private key from a weak PRNG.
262              */
263             if (!BN_generate_dsa_nonce(k, dsa->q, dsa->priv_key, dgst,
264                                        dlen, ctx))
265                 goto err;
266         } else if (!BN_rand_range(k, dsa->q))
267             goto err;
268     } while (BN_is_zero(k));
269
270     if ((dsa->flags & DSA_FLAG_NO_EXP_CONSTTIME) == 0) {
271         BN_set_flags(k, BN_FLG_CONSTTIME);
272     }
273
274     if (dsa->flags & DSA_FLAG_CACHE_MONT_P) {
275         if (!BN_MONT_CTX_set_locked(&dsa->method_mont_p,
276                                     CRYPTO_LOCK_DSA, dsa->p, ctx))
277             goto err;
278     }
279
280     /* Compute r = (g^k mod p) mod q */
281
282     if ((dsa->flags & DSA_FLAG_NO_EXP_CONSTTIME) == 0) {
283         if (!BN_copy(kq, k))
284             goto err;
285
286         /*
287          * We do not want timing information to leak the length of k, so we
288          * compute g^k using an equivalent exponent of fixed length. (This
289          * is a kludge that we need because the BN_mod_exp_mont() does not
290          * let us specify the desired timing behaviour.)
291          */
292
293         if (!BN_add(kq, kq, dsa->q))
294             goto err;
295         if (BN_num_bits(kq) <= BN_num_bits(dsa->q)) {
296             if (!BN_add(kq, kq, dsa->q))
297                 goto err;
298         }
299
300         K = kq;
301     } else {
302         K = k;
303     }
304     DSA_BN_MOD_EXP(goto err, dsa, r, dsa->g, K, dsa->p, ctx,
305                    dsa->method_mont_p);
306     if (!BN_mod(r, r, dsa->q, ctx))
307         goto err;
308
309     /* Compute  part of 's = inv(k) (m + xr) mod q' */
310     if ((kinv = BN_mod_inverse(NULL, k, dsa->q, ctx)) == NULL)
311         goto err;
312
313     BN_clear_free(*kinvp);
314     *kinvp = kinv;
315     kinv = NULL;
316     BN_clear_free(*rp);
317     *rp = r;
318     ret = 1;
319  err:
320     if (!ret) {
321         DSAerr(DSA_F_DSA_SIGN_SETUP, ERR_R_BN_LIB);
322         BN_clear_free(r);
323     }
324     if (ctx != ctx_in)
325         BN_CTX_free(ctx);
326     BN_clear_free(k);
327     BN_clear_free(kq);
328     return (ret);
329 }
330
331 static int dsa_do_verify(const unsigned char *dgst, int dgst_len,
332                          DSA_SIG *sig, DSA *dsa)
333 {
334     BN_CTX *ctx;
335     BIGNUM *u1, *u2, *t1;
336     BN_MONT_CTX *mont = NULL;
337     int ret = -1, i;
338     if (!dsa->p || !dsa->q || !dsa->g) {
339         DSAerr(DSA_F_DSA_DO_VERIFY, DSA_R_MISSING_PARAMETERS);
340         return -1;
341     }
342
343     i = BN_num_bits(dsa->q);
344     /* fips 186-3 allows only different sizes for q */
345     if (i != 160 && i != 224 && i != 256) {
346         DSAerr(DSA_F_DSA_DO_VERIFY, DSA_R_BAD_Q_VALUE);
347         return -1;
348     }
349
350     if (BN_num_bits(dsa->p) > OPENSSL_DSA_MAX_MODULUS_BITS) {
351         DSAerr(DSA_F_DSA_DO_VERIFY, DSA_R_MODULUS_TOO_LARGE);
352         return -1;
353     }
354     u1 = BN_new();
355     u2 = BN_new();
356     t1 = BN_new();
357     ctx = BN_CTX_new();
358     if (u1 == NULL || u2 == NULL || t1 == NULL || ctx == NULL)
359         goto err;
360
361     if (BN_is_zero(sig->r) || BN_is_negative(sig->r) ||
362         BN_ucmp(sig->r, dsa->q) >= 0) {
363         ret = 0;
364         goto err;
365     }
366     if (BN_is_zero(sig->s) || BN_is_negative(sig->s) ||
367         BN_ucmp(sig->s, dsa->q) >= 0) {
368         ret = 0;
369         goto err;
370     }
371
372     /*
373      * Calculate W = inv(S) mod Q save W in u2
374      */
375     if ((BN_mod_inverse(u2, sig->s, dsa->q, ctx)) == NULL)
376         goto err;
377
378     /* save M in u1 */
379     if (dgst_len > (i >> 3))
380         /*
381          * if the digest length is greater than the size of q use the
382          * BN_num_bits(dsa->q) leftmost bits of the digest, see fips 186-3,
383          * 4.2
384          */
385         dgst_len = (i >> 3);
386     if (BN_bin2bn(dgst, dgst_len, u1) == NULL)
387         goto err;
388
389     /* u1 = M * w mod q */
390     if (!BN_mod_mul(u1, u1, u2, dsa->q, ctx))
391         goto err;
392
393     /* u2 = r * w mod q */
394     if (!BN_mod_mul(u2, sig->r, u2, dsa->q, ctx))
395         goto err;
396
397     if (dsa->flags & DSA_FLAG_CACHE_MONT_P) {
398         mont = BN_MONT_CTX_set_locked(&dsa->method_mont_p,
399                                       CRYPTO_LOCK_DSA, dsa->p, ctx);
400         if (!mont)
401             goto err;
402     }
403
404     DSA_MOD_EXP(goto err, dsa, t1, dsa->g, u1, dsa->pub_key, u2, dsa->p, ctx,
405                 mont);
406     /* BN_copy(&u1,&t1); */
407     /* let u1 = u1 mod q */
408     if (!BN_mod(u1, t1, dsa->q, ctx))
409         goto err;
410
411     /*
412      * V is now in u1.  If the signature is correct, it will be equal to R.
413      */
414     ret = (BN_ucmp(u1, sig->r) == 0);
415
416  err:
417     if (ret < 0)
418         DSAerr(DSA_F_DSA_DO_VERIFY, ERR_R_BN_LIB);
419     BN_CTX_free(ctx);
420     BN_free(u1);
421     BN_free(u2);
422     BN_free(t1);
423     return (ret);
424 }
425
426 static int dsa_init(DSA *dsa)
427 {
428     dsa->flags |= DSA_FLAG_CACHE_MONT_P;
429     return (1);
430 }
431
432 static int dsa_finish(DSA *dsa)
433 {
434     BN_MONT_CTX_free(dsa->method_mont_p);
435     return (1);
436 }