Coverage Report

Created: 2025-12-04 06:33

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl32/crypto/rsa/rsa_chk.c
Line
Count
Source
1
/*
2
 * Copyright 1999-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
 * RSA low level APIs are deprecated for public use, but still ok for
12
 * internal use.
13
 */
14
#include "internal/deprecated.h"
15
16
#include <openssl/bn.h>
17
#include <openssl/err.h>
18
#include "crypto/rsa.h"
19
#include "rsa_local.h"
20
21
#ifndef FIPS_MODULE
22
static int rsa_validate_keypair_multiprime(const RSA *key, BN_GENCB *cb)
23
2.89k
{
24
2.89k
    BIGNUM *i, *j, *k, *l, *m;
25
2.89k
    BN_CTX *ctx;
26
2.89k
    int ret = 1, ex_primes = 0, idx;
27
2.89k
    RSA_PRIME_INFO *pinfo;
28
29
2.89k
    if (key->p == NULL || key->q == NULL || key->n == NULL
30
1.92k
            || key->e == NULL || key->d == NULL) {
31
972
        ERR_raise(ERR_LIB_RSA, RSA_R_VALUE_MISSING);
32
972
        return 0;
33
972
    }
34
35
    /* multi-prime? */
36
1.92k
    if (key->version == RSA_ASN1_VERSION_MULTI) {
37
254
        ex_primes = sk_RSA_PRIME_INFO_num(key->prime_infos);
38
254
        if (ex_primes <= 0
39
254
                || (ex_primes + 2) > ossl_rsa_multip_cap(BN_num_bits(key->n))) {
40
121
            ERR_raise(ERR_LIB_RSA, RSA_R_INVALID_MULTI_PRIME_KEY);
41
121
            return 0;
42
121
        }
43
254
    }
44
45
1.80k
    i = BN_new();
46
1.80k
    j = BN_new();
47
1.80k
    k = BN_new();
48
1.80k
    l = BN_new();
49
1.80k
    m = BN_new();
50
1.80k
    ctx = BN_CTX_new_ex(key->libctx);
51
1.80k
    if (i == NULL || j == NULL || k == NULL || l == NULL
52
1.80k
            || m == NULL || ctx == NULL) {
53
0
        ret = -1;
54
0
        ERR_raise(ERR_LIB_RSA, ERR_R_BN_LIB);
55
0
        goto err;
56
0
    }
57
58
1.80k
    if (BN_is_one(key->e)) {
59
42
        ret = 0;
60
42
        ERR_raise(ERR_LIB_RSA, RSA_R_BAD_E_VALUE);
61
42
    }
62
1.80k
    if (!BN_is_odd(key->e)) {
63
1.08k
        ret = 0;
64
1.08k
        ERR_raise(ERR_LIB_RSA, RSA_R_BAD_E_VALUE);
65
1.08k
    }
66
67
    /* p prime? */
68
1.80k
    if (BN_check_prime(key->p, ctx, cb) != 1) {
69
1.45k
        ret = 0;
70
1.45k
        ERR_raise(ERR_LIB_RSA, RSA_R_P_NOT_PRIME);
71
1.45k
    }
72
73
    /* q prime? */
74
1.80k
    if (BN_check_prime(key->q, ctx, cb) != 1) {
75
1.47k
        ret = 0;
76
1.47k
        ERR_raise(ERR_LIB_RSA, RSA_R_Q_NOT_PRIME);
77
1.47k
    }
78
79
    /* r_i prime? */
80
1.97k
    for (idx = 0; idx < ex_primes; idx++) {
81
175
        pinfo = sk_RSA_PRIME_INFO_value(key->prime_infos, idx);
82
175
        if (BN_check_prime(pinfo->r, ctx, cb) != 1) {
83
137
            ret = 0;
84
137
            ERR_raise(ERR_LIB_RSA, RSA_R_MP_R_NOT_PRIME);
85
137
        }
86
175
    }
87
88
    /* n = p*q * r_3...r_i? */
89
1.80k
    if (!BN_mul(i, key->p, key->q, ctx)) {
90
0
        ret = -1;
91
0
        goto err;
92
0
    }
93
1.97k
    for (idx = 0; idx < ex_primes; idx++) {
94
175
        pinfo = sk_RSA_PRIME_INFO_value(key->prime_infos, idx);
95
175
        if (!BN_mul(i, i, pinfo->r, ctx)) {
96
0
            ret = -1;
97
0
            goto err;
98
0
        }
99
175
    }
100
1.80k
    if (BN_cmp(i, key->n) != 0) {
101
1.61k
        ret = 0;
102
1.61k
        if (ex_primes)
103
1.61k
            ERR_raise(ERR_LIB_RSA, RSA_R_N_DOES_NOT_EQUAL_PRODUCT_OF_PRIMES);
104
1.47k
        else
105
1.61k
            ERR_raise(ERR_LIB_RSA, RSA_R_N_DOES_NOT_EQUAL_P_Q);
106
1.61k
    }
107
108
    /* d*e = 1  mod \lambda(n)? */
109
1.80k
    if (!BN_sub(i, key->p, BN_value_one())) {
110
0
        ret = -1;
111
0
        goto err;
112
0
    }
113
1.80k
    if (!BN_sub(j, key->q, BN_value_one())) {
114
0
        ret = -1;
115
0
        goto err;
116
0
    }
117
118
    /* now compute k = \lambda(n) = LCM(i, j, r_3 - 1...) */
119
1.80k
    if (!BN_mul(l, i, j, ctx)) {
120
0
        ret = -1;
121
0
        goto err;
122
0
    }
123
1.80k
    if (!BN_gcd(m, i, j, ctx)) {
124
0
        ret = -1;
125
0
        goto err;
126
0
    }
127
1.80k
    if (!BN_div(m, NULL, l, m, ctx)) { /* remainder is 0 */
128
12
        ret = -1;
129
12
        goto err;
130
12
    }
131
1.95k
    for (idx = 0; idx < ex_primes; idx++) {
132
170
        pinfo = sk_RSA_PRIME_INFO_value(key->prime_infos, idx);
133
170
        if (!BN_sub(k, pinfo->r, BN_value_one())) {
134
0
            ret = -1;
135
0
            goto err;
136
0
        }
137
170
        if (!BN_mul(l, m, k, ctx)) {
138
0
            ret = -1;
139
0
            goto err;
140
0
        }
141
170
        if (!BN_gcd(m, m, k, ctx)) {
142
0
            ret = -1;
143
0
            goto err;
144
0
        }
145
170
        if (!BN_div(m, NULL, l, m, ctx)) { /* remainder is 0 */
146
9
            ret = -1;
147
9
            goto err;
148
9
        }
149
170
    }
150
1.78k
    if (!BN_mod_mul(i, key->d, key->e, m, ctx)) {
151
42
        ret = -1;
152
42
        goto err;
153
42
    }
154
155
1.73k
    if (!BN_is_one(i)) {
156
1.71k
        ret = 0;
157
1.71k
        ERR_raise(ERR_LIB_RSA, RSA_R_D_E_NOT_CONGRUENT_TO_1);
158
1.71k
    }
159
160
1.73k
    if (key->dmp1 != NULL && key->dmq1 != NULL && key->iqmp != NULL) {
161
        /* dmp1 = d mod (p-1)? */
162
1.73k
        if (!BN_sub(i, key->p, BN_value_one())) {
163
0
            ret = -1;
164
0
            goto err;
165
0
        }
166
1.73k
        if (!BN_mod(j, key->d, i, ctx)) {
167
0
            ret = -1;
168
0
            goto err;
169
0
        }
170
1.73k
        if (BN_cmp(j, key->dmp1) != 0) {
171
1.31k
            ret = 0;
172
1.31k
            ERR_raise(ERR_LIB_RSA, RSA_R_DMP1_NOT_CONGRUENT_TO_D);
173
1.31k
        }
174
175
        /* dmq1 = d mod (q-1)? */
176
1.73k
        if (!BN_sub(i, key->q, BN_value_one())) {
177
0
            ret = -1;
178
0
            goto err;
179
0
        }
180
1.73k
        if (!BN_mod(j, key->d, i, ctx)) {
181
0
            ret = -1;
182
0
            goto err;
183
0
        }
184
1.73k
        if (BN_cmp(j, key->dmq1) != 0) {
185
1.35k
            ret = 0;
186
1.35k
            ERR_raise(ERR_LIB_RSA, RSA_R_DMQ1_NOT_CONGRUENT_TO_D);
187
1.35k
        }
188
189
        /* iqmp = q^-1 mod p? */
190
1.73k
        if (!BN_mod_inverse(i, key->q, key->p, ctx)) {
191
762
            ret = -1;
192
762
            goto err;
193
762
        }
194
976
        if (BN_cmp(i, key->iqmp) != 0) {
195
966
            ret = 0;
196
966
            ERR_raise(ERR_LIB_RSA, RSA_R_IQMP_NOT_INVERSE_OF_Q);
197
966
        }
198
976
    }
199
200
1.02k
    for (idx = 0; idx < ex_primes; idx++) {
201
77
        pinfo = sk_RSA_PRIME_INFO_value(key->prime_infos, idx);
202
        /* d_i = d mod (r_i - 1)? */
203
77
        if (!BN_sub(i, pinfo->r, BN_value_one())) {
204
0
            ret = -1;
205
0
            goto err;
206
0
        }
207
77
        if (!BN_mod(j, key->d, i, ctx)) {
208
0
            ret = -1;
209
0
            goto err;
210
0
        }
211
77
        if (BN_cmp(j, pinfo->d) != 0) {
212
70
            ret = 0;
213
70
            ERR_raise(ERR_LIB_RSA, RSA_R_MP_EXPONENT_NOT_CONGRUENT_TO_D);
214
70
        }
215
        /* t_i = R_i ^ -1 mod r_i ? */
216
77
        if (!BN_mod_inverse(i, pinfo->pp, pinfo->r, ctx)) {
217
24
            ret = -1;
218
24
            goto err;
219
24
        }
220
53
        if (BN_cmp(i, pinfo->t) != 0) {
221
52
            ret = 0;
222
52
            ERR_raise(ERR_LIB_RSA, RSA_R_MP_COEFFICIENT_NOT_INVERSE_OF_R);
223
52
        }
224
53
    }
225
226
1.80k
 err:
227
1.80k
    BN_free(i);
228
1.80k
    BN_free(j);
229
1.80k
    BN_free(k);
230
1.80k
    BN_free(l);
231
1.80k
    BN_free(m);
232
1.80k
    BN_CTX_free(ctx);
233
1.80k
    return ret;
234
976
}
235
#endif /* FIPS_MODULE */
236
237
int ossl_rsa_validate_public(const RSA *key)
238
3.78k
{
239
3.78k
    return ossl_rsa_sp800_56b_check_public(key);
240
3.78k
}
241
242
int ossl_rsa_validate_private(const RSA *key)
243
2.89k
{
244
2.89k
    return ossl_rsa_sp800_56b_check_private(key);
245
2.89k
}
246
247
int ossl_rsa_validate_pairwise(const RSA *key)
248
2.89k
{
249
#ifdef FIPS_MODULE
250
    return ossl_rsa_sp800_56b_check_keypair(key, NULL, -1, RSA_bits(key));
251
#else
252
2.89k
    return rsa_validate_keypair_multiprime(key, NULL) > 0;
253
2.89k
#endif
254
2.89k
}
255
256
int RSA_check_key(const RSA *key)
257
0
{
258
0
    return RSA_check_key_ex(key, NULL);
259
0
}
260
261
int RSA_check_key_ex(const RSA *key, BN_GENCB *cb)
262
0
{
263
#ifdef FIPS_MODULE
264
    return ossl_rsa_validate_public(key)
265
           && ossl_rsa_validate_private(key)
266
           && ossl_rsa_validate_pairwise(key);
267
#else
268
0
    return rsa_validate_keypair_multiprime(key, cb);
269
0
#endif /* FIPS_MODULE */
270
0
}