Simplify dsa_ossl.c
[openssl.git] / crypto / dsa / dsa_ossl.c
1 /*
2  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 /* Original version from Steven Schoch <schoch@sheba.arc.nasa.gov> */
11
12 #include <stdio.h>
13 #include "internal/cryptlib.h"
14 #include <openssl/bn.h>
15 #include <openssl/sha.h>
16 #include "dsa_locl.h"
17 #include <openssl/rand.h>
18 #include <openssl/asn1.h>
19
20 static DSA_SIG *dsa_do_sign(const unsigned char *dgst, int dlen, DSA *dsa);
21 static int dsa_sign_setup_no_digest(DSA *dsa, BN_CTX *ctx_in, BIGNUM **kinvp,
22                                     BIGNUM **rp);
23 static int dsa_sign_setup(DSA *dsa, BN_CTX *ctx_in, BIGNUM **kinvp,
24                           BIGNUM **rp, const unsigned char *dgst, int dlen);
25 static int dsa_do_verify(const unsigned char *dgst, int dgst_len,
26                          DSA_SIG *sig, DSA *dsa);
27 static int dsa_init(DSA *dsa);
28 static int dsa_finish(DSA *dsa);
29
30 static DSA_METHOD openssl_dsa_meth = {
31     "OpenSSL DSA method",
32     dsa_do_sign,
33     dsa_sign_setup_no_digest,
34     dsa_do_verify,
35     NULL,                       /* dsa_mod_exp, */
36     NULL,                       /* dsa_bn_mod_exp, */
37     dsa_init,
38     dsa_finish,
39     DSA_FLAG_FIPS_METHOD,
40     NULL,
41     NULL,
42     NULL
43 };
44
45 const DSA_METHOD *DSA_OpenSSL(void)
46 {
47     return &openssl_dsa_meth;
48 }
49
50 static DSA_SIG *dsa_do_sign(const unsigned char *dgst, int dlen, DSA *dsa)
51 {
52     BIGNUM *kinv = NULL;
53     BIGNUM *m;
54     BIGNUM *xr;
55     BIGNUM *r, *s;
56     BN_CTX *ctx = NULL;
57     int reason = ERR_R_BN_LIB;
58     DSA_SIG *ret = NULL;
59     int rv = 0;
60
61     m = BN_new();
62     xr = BN_new();
63     if (m == NULL || xr == NULL)
64         goto err;
65
66     if (!dsa->p || !dsa->q || !dsa->g) {
67         reason = DSA_R_MISSING_PARAMETERS;
68         goto err;
69     }
70
71     ret = DSA_SIG_new();
72     if (ret == NULL)
73         goto err;
74
75     DSA_SIG_get0(&r, &s, ret);
76
77     ctx = BN_CTX_new();
78     if (ctx == NULL)
79         goto err;
80  redo:
81     if (!dsa_sign_setup(dsa, ctx, &kinv, &r, dgst, dlen))
82         goto err;
83
84     if (dlen > BN_num_bytes(dsa->q))
85         /*
86          * if the digest length is greater than the size of q use the
87          * BN_num_bits(dsa->q) leftmost bits of the digest, see fips 186-3,
88          * 4.2
89          */
90         dlen = BN_num_bytes(dsa->q);
91     if (BN_bin2bn(dgst, dlen, m) == NULL)
92         goto err;
93
94     /* Compute  s = inv(k) (m + xr) mod q */
95     if (!BN_mod_mul(xr, dsa->priv_key, r, dsa->q, ctx))
96         goto err;               /* s = xr */
97     if (!BN_add(s, xr, m))
98         goto err;               /* s = m + xr */
99     if (BN_cmp(s, dsa->q) > 0)
100         if (!BN_sub(s, s, dsa->q))
101             goto err;
102     if (!BN_mod_mul(s, s, kinv, dsa->q, ctx))
103         goto err;
104
105     /*
106      * Redo if r or s is zero as required by FIPS 186-3: this is very
107      * unlikely.
108      */
109     if (BN_is_zero(r) || BN_is_zero(s))
110         goto redo;
111
112     rv = 1;
113
114  err:
115     if (rv == 0) {
116         DSAerr(DSA_F_DSA_DO_SIGN, reason);
117         DSA_SIG_free(ret);
118         ret = NULL;
119     }
120     BN_CTX_free(ctx);
121     BN_clear_free(m);
122     BN_clear_free(xr);
123     BN_clear_free(kinv);
124     return ret;
125 }
126
127 static int dsa_sign_setup_no_digest(DSA *dsa, BN_CTX *ctx_in,
128                                     BIGNUM **kinvp, BIGNUM **rp)
129 {
130     return dsa_sign_setup(dsa, ctx_in, kinvp, rp, NULL, 0);
131 }
132
133 static int dsa_sign_setup(DSA *dsa, BN_CTX *ctx_in,
134                           BIGNUM **kinvp, BIGNUM **rp,
135                           const unsigned char *dgst, int dlen)
136 {
137     BN_CTX *ctx = NULL;
138     BIGNUM *k, *kq, *K, *kinv = NULL, *r = *rp;
139     int ret = 0;
140
141     if (!dsa->p || !dsa->q || !dsa->g) {
142         DSAerr(DSA_F_DSA_SIGN_SETUP, DSA_R_MISSING_PARAMETERS);
143         return 0;
144     }
145
146     k = BN_new();
147     kq = BN_new();
148     if (k == NULL || kq == NULL)
149         goto err;
150
151     if (ctx_in == NULL) {
152         if ((ctx = BN_CTX_new()) == NULL)
153             goto err;
154     } else
155         ctx = ctx_in;
156
157     /* Get random k */
158     do {
159         if (dgst != NULL) {
160             /*
161              * We calculate k from SHA512(private_key + H(message) + random).
162              * This protects the private key from a weak PRNG.
163              */
164             if (!BN_generate_dsa_nonce(k, dsa->q, dsa->priv_key, dgst,
165                                        dlen, ctx))
166                 goto err;
167         } else if (!BN_rand_range(k, dsa->q))
168             goto err;
169     } while (BN_is_zero(k));
170
171     if (dsa->flags & DSA_FLAG_CACHE_MONT_P) {
172         if (!BN_MONT_CTX_set_locked(&dsa->method_mont_p,
173                                     dsa->lock, dsa->p, ctx))
174             goto err;
175     }
176
177     /* Compute r = (g^k mod p) mod q */
178
179     if ((dsa->flags & DSA_FLAG_NO_EXP_CONSTTIME) == 0) {
180         if (!BN_copy(kq, k))
181             goto err;
182
183         /*
184          * We do not want timing information to leak the length of k, so we
185          * compute g^k using an equivalent exponent of fixed length. (This
186          * is a kludge that we need because the BN_mod_exp_mont() does not
187          * let us specify the desired timing behaviour.)
188          */
189
190         if (!BN_add(kq, kq, dsa->q))
191             goto err;
192         if (BN_num_bits(kq) <= BN_num_bits(dsa->q)) {
193             if (!BN_add(kq, kq, dsa->q))
194                 goto err;
195         }
196
197         K = kq;
198     } else {
199         K = k;
200     }
201
202     if ((dsa->flags & DSA_FLAG_NO_EXP_CONSTTIME) == 0) {
203         BN_set_flags(K, BN_FLG_CONSTTIME);
204     }
205
206     if ((dsa)->meth->bn_mod_exp != NULL) {
207             if (!dsa->meth->bn_mod_exp(dsa, r, dsa->g, K, dsa->p, ctx,
208                                        dsa->method_mont_p))
209                 goto err;
210     } else {
211             if (!BN_mod_exp_mont(r, dsa->g, K, dsa->p, ctx, dsa->method_mont_p))
212                 goto err;
213     }
214
215
216     if (!BN_mod(r, r, dsa->q, ctx))
217         goto err;
218
219     /* Compute  part of 's = inv(k) (m + xr) mod q' */
220     if ((kinv = BN_mod_inverse(NULL, k, dsa->q, ctx)) == NULL)
221         goto err;
222
223     BN_clear_free(*kinvp);
224     *kinvp = kinv;
225     kinv = NULL;
226     ret = 1;
227  err:
228     if (!ret)
229         DSAerr(DSA_F_DSA_SIGN_SETUP, ERR_R_BN_LIB);
230     if (ctx != ctx_in)
231         BN_CTX_free(ctx);
232     BN_clear_free(k);
233     BN_clear_free(kq);
234     return ret;
235 }
236
237 static int dsa_do_verify(const unsigned char *dgst, int dgst_len,
238                          DSA_SIG *sig, DSA *dsa)
239 {
240     BN_CTX *ctx;
241     BIGNUM *u1, *u2, *t1;
242     BN_MONT_CTX *mont = NULL;
243     BIGNUM *r, *s;
244     int ret = -1, i;
245     if (!dsa->p || !dsa->q || !dsa->g) {
246         DSAerr(DSA_F_DSA_DO_VERIFY, DSA_R_MISSING_PARAMETERS);
247         return -1;
248     }
249
250     i = BN_num_bits(dsa->q);
251     /* fips 186-3 allows only different sizes for q */
252     if (i != 160 && i != 224 && i != 256) {
253         DSAerr(DSA_F_DSA_DO_VERIFY, DSA_R_BAD_Q_VALUE);
254         return -1;
255     }
256
257     if (BN_num_bits(dsa->p) > OPENSSL_DSA_MAX_MODULUS_BITS) {
258         DSAerr(DSA_F_DSA_DO_VERIFY, DSA_R_MODULUS_TOO_LARGE);
259         return -1;
260     }
261     u1 = BN_new();
262     u2 = BN_new();
263     t1 = BN_new();
264     ctx = BN_CTX_new();
265     if (u1 == NULL || u2 == NULL || t1 == NULL || ctx == NULL)
266         goto err;
267
268     DSA_SIG_get0(&r, &s, sig);
269
270     if (BN_is_zero(r) || BN_is_negative(r) ||
271         BN_ucmp(r, dsa->q) >= 0) {
272         ret = 0;
273         goto err;
274     }
275     if (BN_is_zero(s) || BN_is_negative(s) ||
276         BN_ucmp(s, dsa->q) >= 0) {
277         ret = 0;
278         goto err;
279     }
280
281     /*
282      * Calculate W = inv(S) mod Q save W in u2
283      */
284     if ((BN_mod_inverse(u2, s, dsa->q, ctx)) == NULL)
285         goto err;
286
287     /* save M in u1 */
288     if (dgst_len > (i >> 3))
289         /*
290          * if the digest length is greater than the size of q use the
291          * BN_num_bits(dsa->q) leftmost bits of the digest, see fips 186-3,
292          * 4.2
293          */
294         dgst_len = (i >> 3);
295     if (BN_bin2bn(dgst, dgst_len, u1) == NULL)
296         goto err;
297
298     /* u1 = M * w mod q */
299     if (!BN_mod_mul(u1, u1, u2, dsa->q, ctx))
300         goto err;
301
302     /* u2 = r * w mod q */
303     if (!BN_mod_mul(u2, r, u2, dsa->q, ctx))
304         goto err;
305
306     if (dsa->flags & DSA_FLAG_CACHE_MONT_P) {
307         mont = BN_MONT_CTX_set_locked(&dsa->method_mont_p,
308                                       dsa->lock, dsa->p, ctx);
309         if (!mont)
310             goto err;
311     }
312
313     if (dsa->meth->dsa_mod_exp != NULL) {
314         if (!dsa->meth->dsa_mod_exp(dsa, t1, dsa->g, u1, dsa->pub_key, u2,
315                                     dsa->p, ctx, mont))
316             goto err;
317     } else {
318         if (!BN_mod_exp2_mont(t1, dsa->g, u1, dsa->pub_key, u2, dsa->p, ctx,
319                               mont))
320             goto err;
321     }
322
323     /* let u1 = u1 mod q */
324     if (!BN_mod(u1, t1, dsa->q, ctx))
325         goto err;
326
327     /*
328      * V is now in u1.  If the signature is correct, it will be equal to R.
329      */
330     ret = (BN_ucmp(u1, r) == 0);
331
332  err:
333     if (ret < 0)
334         DSAerr(DSA_F_DSA_DO_VERIFY, ERR_R_BN_LIB);
335     BN_CTX_free(ctx);
336     BN_free(u1);
337     BN_free(u2);
338     BN_free(t1);
339     return (ret);
340 }
341
342 static int dsa_init(DSA *dsa)
343 {
344     dsa->flags |= DSA_FLAG_CACHE_MONT_P;
345     return (1);
346 }
347
348 static int dsa_finish(DSA *dsa)
349 {
350     BN_MONT_CTX_free(dsa->method_mont_p);
351     return (1);
352 }