Coverage Report

Created: 2023-06-08 06:40

/src/openssl30/crypto/dsa/dsa_ossl.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the Apache License 2.0 (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
/*
11
 * DSA low level APIs are deprecated for public use, but still ok for
12
 * internal use.
13
 */
14
#include "internal/deprecated.h"
15
16
#include <stdio.h>
17
#include "internal/cryptlib.h"
18
#include "crypto/bn.h"
19
#include <openssl/bn.h>
20
#include <openssl/sha.h>
21
#include "dsa_local.h"
22
#include <openssl/asn1.h>
23
24
0
#define MIN_DSA_SIGN_QBITS   128
25
0
#define MAX_DSA_SIGN_RETRIES 8
26
27
static DSA_SIG *dsa_do_sign(const unsigned char *dgst, int dlen, DSA *dsa);
28
static int dsa_sign_setup_no_digest(DSA *dsa, BN_CTX *ctx_in, BIGNUM **kinvp,
29
                                    BIGNUM **rp);
30
static int dsa_sign_setup(DSA *dsa, BN_CTX *ctx_in, BIGNUM **kinvp,
31
                          BIGNUM **rp, const unsigned char *dgst, int dlen);
32
static int dsa_do_verify(const unsigned char *dgst, int dgst_len,
33
                         DSA_SIG *sig, DSA *dsa);
34
static int dsa_init(DSA *dsa);
35
static int dsa_finish(DSA *dsa);
36
static BIGNUM *dsa_mod_inverse_fermat(const BIGNUM *k, const BIGNUM *q,
37
                                      BN_CTX *ctx);
38
39
static DSA_METHOD openssl_dsa_meth = {
40
    "OpenSSL DSA method",
41
    dsa_do_sign,
42
    dsa_sign_setup_no_digest,
43
    dsa_do_verify,
44
    NULL,                       /* dsa_mod_exp, */
45
    NULL,                       /* dsa_bn_mod_exp, */
46
    dsa_init,
47
    dsa_finish,
48
    DSA_FLAG_FIPS_METHOD,
49
    NULL,
50
    NULL,
51
    NULL
52
};
53
54
static const DSA_METHOD *default_DSA_method = &openssl_dsa_meth;
55
56
#ifndef FIPS_MODULE
57
void DSA_set_default_method(const DSA_METHOD *meth)
58
0
{
59
0
    default_DSA_method = meth;
60
0
}
61
#endif /* FIPS_MODULE */
62
63
const DSA_METHOD *DSA_get_default_method(void)
64
347
{
65
347
    return default_DSA_method;
66
347
}
67
68
const DSA_METHOD *DSA_OpenSSL(void)
69
163
{
70
163
    return &openssl_dsa_meth;
71
163
}
72
73
DSA_SIG *ossl_dsa_do_sign_int(const unsigned char *dgst, int dlen, DSA *dsa)
74
0
{
75
0
    BIGNUM *kinv = NULL;
76
0
    BIGNUM *m, *blind, *blindm, *tmp;
77
0
    BN_CTX *ctx = NULL;
78
0
    int reason = ERR_R_BN_LIB;
79
0
    DSA_SIG *ret = NULL;
80
0
    int rv = 0;
81
0
    int retries = 0;
82
83
0
    if (dsa->params.p == NULL
84
0
        || dsa->params.q == NULL
85
0
        || dsa->params.g == NULL) {
86
0
        reason = DSA_R_MISSING_PARAMETERS;
87
0
        goto err;
88
0
    }
89
0
    if (dsa->priv_key == NULL) {
90
0
        reason = DSA_R_MISSING_PRIVATE_KEY;
91
0
        goto err;
92
0
    }
93
94
0
    ret = DSA_SIG_new();
95
0
    if (ret == NULL)
96
0
        goto err;
97
0
    ret->r = BN_new();
98
0
    ret->s = BN_new();
99
0
    if (ret->r == NULL || ret->s == NULL)
100
0
        goto err;
101
102
0
    ctx = BN_CTX_new_ex(dsa->libctx);
103
0
    if (ctx == NULL)
104
0
        goto err;
105
0
    m = BN_CTX_get(ctx);
106
0
    blind = BN_CTX_get(ctx);
107
0
    blindm = BN_CTX_get(ctx);
108
0
    tmp = BN_CTX_get(ctx);
109
0
    if (tmp == NULL)
110
0
        goto err;
111
112
0
 redo:
113
0
    if (!dsa_sign_setup(dsa, ctx, &kinv, &ret->r, dgst, dlen))
114
0
        goto err;
115
116
0
    if (dlen > BN_num_bytes(dsa->params.q))
117
        /*
118
         * if the digest length is greater than the size of q use the
119
         * BN_num_bits(dsa->q) leftmost bits of the digest, see fips 186-3,
120
         * 4.2
121
         */
122
0
        dlen = BN_num_bytes(dsa->params.q);
123
0
    if (BN_bin2bn(dgst, dlen, m) == NULL)
124
0
        goto err;
125
126
    /*
127
     * The normal signature calculation is:
128
     *
129
     *   s := k^-1 * (m + r * priv_key) mod q
130
     *
131
     * We will blind this to protect against side channel attacks
132
     *
133
     *   s := blind^-1 * k^-1 * (blind * m + blind * r * priv_key) mod q
134
     */
135
136
    /*
137
     * Generate a blinding value
138
     * The size of q is tested in dsa_sign_setup() so there should not be an infinite loop here.
139
     */
140
0
    do {
141
0
        if (!BN_priv_rand_ex(blind, BN_num_bits(dsa->params.q) - 1,
142
0
                             BN_RAND_TOP_ANY, BN_RAND_BOTTOM_ANY, 0, ctx))
143
0
            goto err;
144
0
    } while (BN_is_zero(blind));
145
0
    BN_set_flags(blind, BN_FLG_CONSTTIME);
146
0
    BN_set_flags(blindm, BN_FLG_CONSTTIME);
147
0
    BN_set_flags(tmp, BN_FLG_CONSTTIME);
148
149
    /* tmp := blind * priv_key * r mod q */
150
0
    if (!BN_mod_mul(tmp, blind, dsa->priv_key, dsa->params.q, ctx))
151
0
        goto err;
152
0
    if (!BN_mod_mul(tmp, tmp, ret->r, dsa->params.q, ctx))
153
0
        goto err;
154
155
    /* blindm := blind * m mod q */
156
0
    if (!BN_mod_mul(blindm, blind, m, dsa->params.q, ctx))
157
0
        goto err;
158
159
    /* s : = (blind * priv_key * r) + (blind * m) mod q */
160
0
    if (!BN_mod_add_quick(ret->s, tmp, blindm, dsa->params.q))
161
0
        goto err;
162
163
    /* s := s * k^-1 mod q */
164
0
    if (!BN_mod_mul(ret->s, ret->s, kinv, dsa->params.q, ctx))
165
0
        goto err;
166
167
    /* s:= s * blind^-1 mod q */
168
0
    if (BN_mod_inverse(blind, blind, dsa->params.q, ctx) == NULL)
169
0
        goto err;
170
0
    if (!BN_mod_mul(ret->s, ret->s, blind, dsa->params.q, ctx))
171
0
        goto err;
172
173
    /*
174
     * Redo if r or s is zero as required by FIPS 186-4: Section 4.6
175
     * This is very unlikely.
176
     * Limit the retries so there is no possibility of an infinite
177
     * loop for bad domain parameter values.
178
     */
179
0
    if (BN_is_zero(ret->r) || BN_is_zero(ret->s)) {
180
0
        if (retries++ > MAX_DSA_SIGN_RETRIES) {
181
0
            reason = DSA_R_TOO_MANY_RETRIES;
182
0
            goto err;
183
0
        }
184
0
        goto redo;
185
0
    }
186
0
    rv = 1;
187
0
 err:
188
0
    if (rv == 0) {
189
0
        ERR_raise(ERR_LIB_DSA, reason);
190
0
        DSA_SIG_free(ret);
191
0
        ret = NULL;
192
0
    }
193
0
    BN_CTX_free(ctx);
194
0
    BN_clear_free(kinv);
195
0
    return ret;
196
0
}
197
198
static DSA_SIG *dsa_do_sign(const unsigned char *dgst, int dlen, DSA *dsa)
199
0
{
200
0
    return ossl_dsa_do_sign_int(dgst, dlen, dsa);
201
0
}
202
203
static int dsa_sign_setup_no_digest(DSA *dsa, BN_CTX *ctx_in,
204
                                    BIGNUM **kinvp, BIGNUM **rp)
205
0
{
206
0
    return dsa_sign_setup(dsa, ctx_in, kinvp, rp, NULL, 0);
207
0
}
208
209
static int dsa_sign_setup(DSA *dsa, BN_CTX *ctx_in,
210
                          BIGNUM **kinvp, BIGNUM **rp,
211
                          const unsigned char *dgst, int dlen)
212
0
{
213
0
    BN_CTX *ctx = NULL;
214
0
    BIGNUM *k, *kinv = NULL, *r = *rp;
215
0
    BIGNUM *l;
216
0
    int ret = 0;
217
0
    int q_bits, q_words;
218
219
0
    if (!dsa->params.p || !dsa->params.q || !dsa->params.g) {
220
0
        ERR_raise(ERR_LIB_DSA, DSA_R_MISSING_PARAMETERS);
221
0
        return 0;
222
0
    }
223
224
    /* Reject obviously invalid parameters */
225
0
    if (BN_is_zero(dsa->params.p)
226
0
        || BN_is_zero(dsa->params.q)
227
0
        || BN_is_zero(dsa->params.g)
228
0
        || BN_is_negative(dsa->params.p)
229
0
        || BN_is_negative(dsa->params.q)
230
0
        || BN_is_negative(dsa->params.g)) {
231
0
        ERR_raise(ERR_LIB_DSA, DSA_R_INVALID_PARAMETERS);
232
0
        return 0;
233
0
    }
234
0
    if (dsa->priv_key == NULL) {
235
0
        ERR_raise(ERR_LIB_DSA, DSA_R_MISSING_PRIVATE_KEY);
236
0
        return 0;
237
0
    }
238
0
    k = BN_new();
239
0
    l = BN_new();
240
0
    if (k == NULL || l == NULL)
241
0
        goto err;
242
243
0
    if (ctx_in == NULL) {
244
        /* if you don't pass in ctx_in you get a default libctx */
245
0
        if ((ctx = BN_CTX_new_ex(NULL)) == NULL)
246
0
            goto err;
247
0
    } else
248
0
        ctx = ctx_in;
249
250
    /* Preallocate space */
251
0
    q_bits = BN_num_bits(dsa->params.q);
252
0
    q_words = bn_get_top(dsa->params.q);
253
0
    if (q_bits < MIN_DSA_SIGN_QBITS
254
0
        || !bn_wexpand(k, q_words + 2)
255
0
        || !bn_wexpand(l, q_words + 2))
256
0
        goto err;
257
258
    /* Get random k */
259
0
    do {
260
0
        if (dgst != NULL) {
261
            /*
262
             * We calculate k from SHA512(private_key + H(message) + random).
263
             * This protects the private key from a weak PRNG.
264
             */
265
0
            if (!BN_generate_dsa_nonce(k, dsa->params.q, dsa->priv_key, dgst,
266
0
                                       dlen, ctx))
267
0
                goto err;
268
0
        } else if (!BN_priv_rand_range_ex(k, dsa->params.q, 0, ctx))
269
0
            goto err;
270
0
    } while (BN_is_zero(k));
271
272
0
    BN_set_flags(k, BN_FLG_CONSTTIME);
273
0
    BN_set_flags(l, BN_FLG_CONSTTIME);
274
275
0
    if (dsa->flags & DSA_FLAG_CACHE_MONT_P) {
276
0
        if (!BN_MONT_CTX_set_locked(&dsa->method_mont_p,
277
0
                                    dsa->lock, dsa->params.p, ctx))
278
0
            goto err;
279
0
    }
280
281
    /* Compute r = (g^k mod p) mod q */
282
283
    /*
284
     * We do not want timing information to leak the length of k, so we
285
     * compute G^k using an equivalent scalar of fixed bit-length.
286
     *
287
     * We unconditionally perform both of these additions to prevent a
288
     * small timing information leakage.  We then choose the sum that is
289
     * one bit longer than the modulus.
290
     *
291
     * There are some concerns about the efficacy of doing this.  More
292
     * specifically refer to the discussion starting with:
293
     *     https://github.com/openssl/openssl/pull/7486#discussion_r228323705
294
     * The fix is to rework BN so these gymnastics aren't required.
295
     */
296
0
    if (!BN_add(l, k, dsa->params.q)
297
0
        || !BN_add(k, l, dsa->params.q))
298
0
        goto err;
299
300
0
    BN_consttime_swap(BN_is_bit_set(l, q_bits), k, l, q_words + 2);
301
302
0
    if ((dsa)->meth->bn_mod_exp != NULL) {
303
0
            if (!dsa->meth->bn_mod_exp(dsa, r, dsa->params.g, k, dsa->params.p,
304
0
                                       ctx, dsa->method_mont_p))
305
0
                goto err;
306
0
    } else {
307
0
            if (!BN_mod_exp_mont(r, dsa->params.g, k, dsa->params.p, ctx,
308
0
                                 dsa->method_mont_p))
309
0
                goto err;
310
0
    }
311
312
0
    if (!BN_mod(r, r, dsa->params.q, ctx))
313
0
        goto err;
314
315
    /* Compute part of 's = inv(k) (m + xr) mod q' */
316
0
    if ((kinv = dsa_mod_inverse_fermat(k, dsa->params.q, ctx)) == NULL)
317
0
        goto err;
318
319
0
    BN_clear_free(*kinvp);
320
0
    *kinvp = kinv;
321
0
    kinv = NULL;
322
0
    ret = 1;
323
0
 err:
324
0
    if (!ret)
325
0
        ERR_raise(ERR_LIB_DSA, ERR_R_BN_LIB);
326
0
    if (ctx != ctx_in)
327
0
        BN_CTX_free(ctx);
328
0
    BN_clear_free(k);
329
0
    BN_clear_free(l);
330
0
    return ret;
331
0
}
332
333
static int dsa_do_verify(const unsigned char *dgst, int dgst_len,
334
                         DSA_SIG *sig, DSA *dsa)
335
0
{
336
0
    BN_CTX *ctx;
337
0
    BIGNUM *u1, *u2, *t1;
338
0
    BN_MONT_CTX *mont = NULL;
339
0
    const BIGNUM *r, *s;
340
0
    int ret = -1, i;
341
342
0
    if (dsa->params.p == NULL
343
0
        || dsa->params.q == NULL
344
0
        || dsa->params.g == NULL) {
345
0
        ERR_raise(ERR_LIB_DSA, DSA_R_MISSING_PARAMETERS);
346
0
        return -1;
347
0
    }
348
349
0
    i = BN_num_bits(dsa->params.q);
350
    /* fips 186-3 allows only different sizes for q */
351
0
    if (i != 160 && i != 224 && i != 256) {
352
0
        ERR_raise(ERR_LIB_DSA, DSA_R_BAD_Q_VALUE);
353
0
        return -1;
354
0
    }
355
356
0
    if (BN_num_bits(dsa->params.p) > OPENSSL_DSA_MAX_MODULUS_BITS) {
357
0
        ERR_raise(ERR_LIB_DSA, DSA_R_MODULUS_TOO_LARGE);
358
0
        return -1;
359
0
    }
360
0
    u1 = BN_new();
361
0
    u2 = BN_new();
362
0
    t1 = BN_new();
363
0
    ctx = BN_CTX_new_ex(NULL); /* verify does not need a libctx */
364
0
    if (u1 == NULL || u2 == NULL || t1 == NULL || ctx == NULL)
365
0
        goto err;
366
367
0
    DSA_SIG_get0(sig, &r, &s);
368
369
0
    if (BN_is_zero(r) || BN_is_negative(r) ||
370
0
        BN_ucmp(r, dsa->params.q) >= 0) {
371
0
        ret = 0;
372
0
        goto err;
373
0
    }
374
0
    if (BN_is_zero(s) || BN_is_negative(s) ||
375
0
        BN_ucmp(s, dsa->params.q) >= 0) {
376
0
        ret = 0;
377
0
        goto err;
378
0
    }
379
380
    /*
381
     * Calculate W = inv(S) mod Q save W in u2
382
     */
383
0
    if ((BN_mod_inverse(u2, s, dsa->params.q, ctx)) == NULL)
384
0
        goto err;
385
386
    /* save M in u1 */
387
0
    if (dgst_len > (i >> 3))
388
        /*
389
         * if the digest length is greater than the size of q use the
390
         * BN_num_bits(dsa->q) leftmost bits of the digest, see fips 186-3,
391
         * 4.2
392
         */
393
0
        dgst_len = (i >> 3);
394
0
    if (BN_bin2bn(dgst, dgst_len, u1) == NULL)
395
0
        goto err;
396
397
    /* u1 = M * w mod q */
398
0
    if (!BN_mod_mul(u1, u1, u2, dsa->params.q, ctx))
399
0
        goto err;
400
401
    /* u2 = r * w mod q */
402
0
    if (!BN_mod_mul(u2, r, u2, dsa->params.q, ctx))
403
0
        goto err;
404
405
0
    if (dsa->flags & DSA_FLAG_CACHE_MONT_P) {
406
0
        mont = BN_MONT_CTX_set_locked(&dsa->method_mont_p,
407
0
                                      dsa->lock, dsa->params.p, ctx);
408
0
        if (!mont)
409
0
            goto err;
410
0
    }
411
412
0
    if (dsa->meth->dsa_mod_exp != NULL) {
413
0
        if (!dsa->meth->dsa_mod_exp(dsa, t1, dsa->params.g, u1, dsa->pub_key, u2,
414
0
                                    dsa->params.p, ctx, mont))
415
0
            goto err;
416
0
    } else {
417
0
        if (!BN_mod_exp2_mont(t1, dsa->params.g, u1, dsa->pub_key, u2,
418
0
                              dsa->params.p, ctx, mont))
419
0
            goto err;
420
0
    }
421
422
    /* let u1 = u1 mod q */
423
0
    if (!BN_mod(u1, t1, dsa->params.q, ctx))
424
0
        goto err;
425
426
    /*
427
     * V is now in u1.  If the signature is correct, it will be equal to R.
428
     */
429
0
    ret = (BN_ucmp(u1, r) == 0);
430
431
0
 err:
432
0
    if (ret < 0)
433
0
        ERR_raise(ERR_LIB_DSA, ERR_R_BN_LIB);
434
0
    BN_CTX_free(ctx);
435
0
    BN_free(u1);
436
0
    BN_free(u2);
437
0
    BN_free(t1);
438
0
    return ret;
439
0
}
440
441
static int dsa_init(DSA *dsa)
442
347
{
443
347
    dsa->flags |= DSA_FLAG_CACHE_MONT_P;
444
347
    ossl_ffc_params_init(&dsa->params);
445
347
    dsa->dirty_cnt++;
446
347
    return 1;
447
347
}
448
449
static int dsa_finish(DSA *dsa)
450
347
{
451
347
    BN_MONT_CTX_free(dsa->method_mont_p);
452
347
    return 1;
453
347
}
454
455
/*
456
 * Compute the inverse of k modulo q.
457
 * Since q is prime, Fermat's Little Theorem applies, which reduces this to
458
 * mod-exp operation.  Both the exponent and modulus are public information
459
 * so a mod-exp that doesn't leak the base is sufficient.  A newly allocated
460
 * BIGNUM is returned which the caller must free.
461
 */
462
static BIGNUM *dsa_mod_inverse_fermat(const BIGNUM *k, const BIGNUM *q,
463
                                      BN_CTX *ctx)
464
0
{
465
0
    BIGNUM *res = NULL;
466
0
    BIGNUM *r, *e;
467
468
0
    if ((r = BN_new()) == NULL)
469
0
        return NULL;
470
471
0
    BN_CTX_start(ctx);
472
0
    if ((e = BN_CTX_get(ctx)) != NULL
473
0
            && BN_set_word(r, 2)
474
0
            && BN_sub(e, q, r)
475
0
            && BN_mod_exp_mont(r, k, e, q, ctx, NULL))
476
0
        res = r;
477
0
    else
478
0
        BN_free(r);
479
0
    BN_CTX_end(ctx);
480
0
    return res;
481
0
}