81c52398692a7f4acb1567e70a04a9e030e005ee
[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, *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     if (k == NULL)
148         goto err;
149
150     if (ctx_in == NULL) {
151         if ((ctx = BN_CTX_new()) == NULL)
152             goto err;
153     } else
154         ctx = ctx_in;
155
156     /* Get random k */
157     do {
158         if (dgst != NULL) {
159             /*
160              * We calculate k from SHA512(private_key + H(message) + random).
161              * This protects the private key from a weak PRNG.
162              */
163             if (!BN_generate_dsa_nonce(k, dsa->q, dsa->priv_key, dgst,
164                                        dlen, ctx))
165                 goto err;
166         } else if (!BN_rand_range(k, dsa->q))
167             goto err;
168     } while (BN_is_zero(k));
169
170     if (dsa->flags & DSA_FLAG_CACHE_MONT_P) {
171         if (!BN_MONT_CTX_set_locked(&dsa->method_mont_p,
172                                     dsa->lock, dsa->p, ctx))
173             goto err;
174     }
175
176     /* Compute r = (g^k mod p) mod q */
177
178     /*
179      * We do not want timing information to leak the length of k, so we
180      * compute g^k using an equivalent exponent of fixed length. (This
181      * is a kludge that we need because the BN_mod_exp_mont() does not
182      * let us specify the desired timing behaviour.)
183      */
184
185     if (!BN_add(k, k, dsa->q))
186         goto err;
187     if (BN_num_bits(k) <= BN_num_bits(dsa->q)) {
188         if (!BN_add(k, k, dsa->q))
189             goto err;
190     }
191
192     BN_set_flags(k, BN_FLG_CONSTTIME);
193
194     if ((dsa)->meth->bn_mod_exp != NULL) {
195             if (!dsa->meth->bn_mod_exp(dsa, r, dsa->g, k, dsa->p, ctx,
196                                        dsa->method_mont_p))
197                 goto err;
198     } else {
199             if (!BN_mod_exp_mont(r, dsa->g, k, dsa->p, ctx, dsa->method_mont_p))
200                 goto err;
201     }
202
203
204     if (!BN_mod(r, r, dsa->q, ctx))
205         goto err;
206
207     /* Compute  part of 's = inv(k) (m + xr) mod q' */
208     if ((kinv = BN_mod_inverse(NULL, k, dsa->q, ctx)) == NULL)
209         goto err;
210
211     BN_clear_free(*kinvp);
212     *kinvp = kinv;
213     kinv = NULL;
214     ret = 1;
215  err:
216     if (!ret)
217         DSAerr(DSA_F_DSA_SIGN_SETUP, ERR_R_BN_LIB);
218     if (ctx != ctx_in)
219         BN_CTX_free(ctx);
220     BN_clear_free(k);
221     return ret;
222 }
223
224 static int dsa_do_verify(const unsigned char *dgst, int dgst_len,
225                          DSA_SIG *sig, DSA *dsa)
226 {
227     BN_CTX *ctx;
228     BIGNUM *u1, *u2, *t1;
229     BN_MONT_CTX *mont = NULL;
230     BIGNUM *r, *s;
231     int ret = -1, i;
232     if (!dsa->p || !dsa->q || !dsa->g) {
233         DSAerr(DSA_F_DSA_DO_VERIFY, DSA_R_MISSING_PARAMETERS);
234         return -1;
235     }
236
237     i = BN_num_bits(dsa->q);
238     /* fips 186-3 allows only different sizes for q */
239     if (i != 160 && i != 224 && i != 256) {
240         DSAerr(DSA_F_DSA_DO_VERIFY, DSA_R_BAD_Q_VALUE);
241         return -1;
242     }
243
244     if (BN_num_bits(dsa->p) > OPENSSL_DSA_MAX_MODULUS_BITS) {
245         DSAerr(DSA_F_DSA_DO_VERIFY, DSA_R_MODULUS_TOO_LARGE);
246         return -1;
247     }
248     u1 = BN_new();
249     u2 = BN_new();
250     t1 = BN_new();
251     ctx = BN_CTX_new();
252     if (u1 == NULL || u2 == NULL || t1 == NULL || ctx == NULL)
253         goto err;
254
255     DSA_SIG_get0(&r, &s, sig);
256
257     if (BN_is_zero(r) || BN_is_negative(r) ||
258         BN_ucmp(r, dsa->q) >= 0) {
259         ret = 0;
260         goto err;
261     }
262     if (BN_is_zero(s) || BN_is_negative(s) ||
263         BN_ucmp(s, dsa->q) >= 0) {
264         ret = 0;
265         goto err;
266     }
267
268     /*
269      * Calculate W = inv(S) mod Q save W in u2
270      */
271     if ((BN_mod_inverse(u2, s, dsa->q, ctx)) == NULL)
272         goto err;
273
274     /* save M in u1 */
275     if (dgst_len > (i >> 3))
276         /*
277          * if the digest length is greater than the size of q use the
278          * BN_num_bits(dsa->q) leftmost bits of the digest, see fips 186-3,
279          * 4.2
280          */
281         dgst_len = (i >> 3);
282     if (BN_bin2bn(dgst, dgst_len, u1) == NULL)
283         goto err;
284
285     /* u1 = M * w mod q */
286     if (!BN_mod_mul(u1, u1, u2, dsa->q, ctx))
287         goto err;
288
289     /* u2 = r * w mod q */
290     if (!BN_mod_mul(u2, r, u2, dsa->q, ctx))
291         goto err;
292
293     if (dsa->flags & DSA_FLAG_CACHE_MONT_P) {
294         mont = BN_MONT_CTX_set_locked(&dsa->method_mont_p,
295                                       dsa->lock, dsa->p, ctx);
296         if (!mont)
297             goto err;
298     }
299
300     if (dsa->meth->dsa_mod_exp != NULL) {
301         if (!dsa->meth->dsa_mod_exp(dsa, t1, dsa->g, u1, dsa->pub_key, u2,
302                                     dsa->p, ctx, mont))
303             goto err;
304     } else {
305         if (!BN_mod_exp2_mont(t1, dsa->g, u1, dsa->pub_key, u2, dsa->p, ctx,
306                               mont))
307             goto err;
308     }
309
310     /* let u1 = u1 mod q */
311     if (!BN_mod(u1, t1, dsa->q, ctx))
312         goto err;
313
314     /*
315      * V is now in u1.  If the signature is correct, it will be equal to R.
316      */
317     ret = (BN_ucmp(u1, r) == 0);
318
319  err:
320     if (ret < 0)
321         DSAerr(DSA_F_DSA_DO_VERIFY, ERR_R_BN_LIB);
322     BN_CTX_free(ctx);
323     BN_free(u1);
324     BN_free(u2);
325     BN_free(t1);
326     return (ret);
327 }
328
329 static int dsa_init(DSA *dsa)
330 {
331     dsa->flags |= DSA_FLAG_CACHE_MONT_P;
332     return (1);
333 }
334
335 static int dsa_finish(DSA *dsa)
336 {
337     BN_MONT_CTX_free(dsa->method_mont_p);
338     return (1);
339 }