Coverage Report

Created: 2023-09-25 06:45

/src/openssl111/crypto/ec/ecp_mont.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2001-2019 The OpenSSL Project Authors. All Rights Reserved.
3
 * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved
4
 *
5
 * Licensed under the OpenSSL license (the "License").  You may not use
6
 * this file except in compliance with the License.  You can obtain a copy
7
 * in the file LICENSE in the source distribution or at
8
 * https://www.openssl.org/source/license.html
9
 */
10
11
#include <openssl/err.h>
12
13
#include "ec_local.h"
14
15
const EC_METHOD *EC_GFp_mont_method(void)
16
73.8k
{
17
73.8k
    static const EC_METHOD ret = {
18
73.8k
        EC_FLAGS_DEFAULT_OCT,
19
73.8k
        NID_X9_62_prime_field,
20
73.8k
        ec_GFp_mont_group_init,
21
73.8k
        ec_GFp_mont_group_finish,
22
73.8k
        ec_GFp_mont_group_clear_finish,
23
73.8k
        ec_GFp_mont_group_copy,
24
73.8k
        ec_GFp_mont_group_set_curve,
25
73.8k
        ec_GFp_simple_group_get_curve,
26
73.8k
        ec_GFp_simple_group_get_degree,
27
73.8k
        ec_group_simple_order_bits,
28
73.8k
        ec_GFp_simple_group_check_discriminant,
29
73.8k
        ec_GFp_simple_point_init,
30
73.8k
        ec_GFp_simple_point_finish,
31
73.8k
        ec_GFp_simple_point_clear_finish,
32
73.8k
        ec_GFp_simple_point_copy,
33
73.8k
        ec_GFp_simple_point_set_to_infinity,
34
73.8k
        ec_GFp_simple_set_Jprojective_coordinates_GFp,
35
73.8k
        ec_GFp_simple_get_Jprojective_coordinates_GFp,
36
73.8k
        ec_GFp_simple_point_set_affine_coordinates,
37
73.8k
        ec_GFp_simple_point_get_affine_coordinates,
38
73.8k
        0, 0, 0,
39
73.8k
        ec_GFp_simple_add,
40
73.8k
        ec_GFp_simple_dbl,
41
73.8k
        ec_GFp_simple_invert,
42
73.8k
        ec_GFp_simple_is_at_infinity,
43
73.8k
        ec_GFp_simple_is_on_curve,
44
73.8k
        ec_GFp_simple_cmp,
45
73.8k
        ec_GFp_simple_make_affine,
46
73.8k
        ec_GFp_simple_points_make_affine,
47
73.8k
        0 /* mul */ ,
48
73.8k
        0 /* precompute_mult */ ,
49
73.8k
        0 /* have_precompute_mult */ ,
50
73.8k
        ec_GFp_mont_field_mul,
51
73.8k
        ec_GFp_mont_field_sqr,
52
73.8k
        0 /* field_div */ ,
53
73.8k
        ec_GFp_mont_field_inv,
54
73.8k
        ec_GFp_mont_field_encode,
55
73.8k
        ec_GFp_mont_field_decode,
56
73.8k
        ec_GFp_mont_field_set_to_one,
57
73.8k
        ec_key_simple_priv2oct,
58
73.8k
        ec_key_simple_oct2priv,
59
73.8k
        0, /* set private */
60
73.8k
        ec_key_simple_generate_key,
61
73.8k
        ec_key_simple_check_key,
62
73.8k
        ec_key_simple_generate_public_key,
63
73.8k
        0, /* keycopy */
64
73.8k
        0, /* keyfinish */
65
73.8k
        ecdh_simple_compute_key,
66
73.8k
        0, /* field_inverse_mod_ord */
67
73.8k
        ec_GFp_simple_blind_coordinates,
68
73.8k
        ec_GFp_simple_ladder_pre,
69
73.8k
        ec_GFp_simple_ladder_step,
70
73.8k
        ec_GFp_simple_ladder_post
71
73.8k
    };
72
73
73.8k
    return &ret;
74
73.8k
}
75
76
int ec_GFp_mont_group_init(EC_GROUP *group)
77
48.9k
{
78
48.9k
    int ok;
79
80
48.9k
    ok = ec_GFp_simple_group_init(group);
81
48.9k
    group->field_data1 = NULL;
82
48.9k
    group->field_data2 = NULL;
83
48.9k
    return ok;
84
48.9k
}
85
86
void ec_GFp_mont_group_finish(EC_GROUP *group)
87
48.1k
{
88
48.1k
    BN_MONT_CTX_free(group->field_data1);
89
48.1k
    group->field_data1 = NULL;
90
48.1k
    BN_free(group->field_data2);
91
48.1k
    group->field_data2 = NULL;
92
48.1k
    ec_GFp_simple_group_finish(group);
93
48.1k
}
94
95
void ec_GFp_mont_group_clear_finish(EC_GROUP *group)
96
807
{
97
807
    BN_MONT_CTX_free(group->field_data1);
98
807
    group->field_data1 = NULL;
99
807
    BN_clear_free(group->field_data2);
100
807
    group->field_data2 = NULL;
101
807
    ec_GFp_simple_group_clear_finish(group);
102
807
}
103
104
int ec_GFp_mont_group_copy(EC_GROUP *dest, const EC_GROUP *src)
105
21.0k
{
106
21.0k
    BN_MONT_CTX_free(dest->field_data1);
107
21.0k
    dest->field_data1 = NULL;
108
21.0k
    BN_clear_free(dest->field_data2);
109
21.0k
    dest->field_data2 = NULL;
110
111
21.0k
    if (!ec_GFp_simple_group_copy(dest, src))
112
0
        return 0;
113
114
21.0k
    if (src->field_data1 != NULL) {
115
21.0k
        dest->field_data1 = BN_MONT_CTX_new();
116
21.0k
        if (dest->field_data1 == NULL)
117
0
            return 0;
118
21.0k
        if (!BN_MONT_CTX_copy(dest->field_data1, src->field_data1))
119
0
            goto err;
120
21.0k
    }
121
21.0k
    if (src->field_data2 != NULL) {
122
21.0k
        dest->field_data2 = BN_dup(src->field_data2);
123
21.0k
        if (dest->field_data2 == NULL)
124
0
            goto err;
125
21.0k
    }
126
127
21.0k
    return 1;
128
129
0
 err:
130
0
    BN_MONT_CTX_free(dest->field_data1);
131
0
    dest->field_data1 = NULL;
132
0
    return 0;
133
21.0k
}
134
135
int ec_GFp_mont_group_set_curve(EC_GROUP *group, const BIGNUM *p,
136
                                const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
137
27.9k
{
138
27.9k
    BN_CTX *new_ctx = NULL;
139
27.9k
    BN_MONT_CTX *mont = NULL;
140
27.9k
    BIGNUM *one = NULL;
141
27.9k
    int ret = 0;
142
143
27.9k
    BN_MONT_CTX_free(group->field_data1);
144
27.9k
    group->field_data1 = NULL;
145
27.9k
    BN_free(group->field_data2);
146
27.9k
    group->field_data2 = NULL;
147
148
27.9k
    if (ctx == NULL) {
149
3.33k
        ctx = new_ctx = BN_CTX_new();
150
3.33k
        if (ctx == NULL)
151
0
            return 0;
152
3.33k
    }
153
154
27.9k
    mont = BN_MONT_CTX_new();
155
27.9k
    if (mont == NULL)
156
0
        goto err;
157
27.9k
    if (!BN_MONT_CTX_set(mont, p, ctx)) {
158
804
        ECerr(EC_F_EC_GFP_MONT_GROUP_SET_CURVE, ERR_R_BN_LIB);
159
804
        goto err;
160
804
    }
161
27.1k
    one = BN_new();
162
27.1k
    if (one == NULL)
163
0
        goto err;
164
27.1k
    if (!BN_to_montgomery(one, BN_value_one(), mont, ctx))
165
0
        goto err;
166
167
27.1k
    group->field_data1 = mont;
168
27.1k
    mont = NULL;
169
27.1k
    group->field_data2 = one;
170
27.1k
    one = NULL;
171
172
27.1k
    ret = ec_GFp_simple_group_set_curve(group, p, a, b, ctx);
173
174
27.1k
    if (!ret) {
175
3
        BN_MONT_CTX_free(group->field_data1);
176
3
        group->field_data1 = NULL;
177
3
        BN_free(group->field_data2);
178
3
        group->field_data2 = NULL;
179
3
    }
180
181
27.9k
 err:
182
27.9k
    BN_free(one);
183
27.9k
    BN_CTX_free(new_ctx);
184
27.9k
    BN_MONT_CTX_free(mont);
185
27.9k
    return ret;
186
27.1k
}
187
188
int ec_GFp_mont_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
189
                          const BIGNUM *b, BN_CTX *ctx)
190
2.62M
{
191
2.62M
    if (group->field_data1 == NULL) {
192
0
        ECerr(EC_F_EC_GFP_MONT_FIELD_MUL, EC_R_NOT_INITIALIZED);
193
0
        return 0;
194
0
    }
195
196
2.62M
    return BN_mod_mul_montgomery(r, a, b, group->field_data1, ctx);
197
2.62M
}
198
199
int ec_GFp_mont_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
200
                          BN_CTX *ctx)
201
1.54M
{
202
1.54M
    if (group->field_data1 == NULL) {
203
0
        ECerr(EC_F_EC_GFP_MONT_FIELD_SQR, EC_R_NOT_INITIALIZED);
204
0
        return 0;
205
0
    }
206
207
1.54M
    return BN_mod_mul_montgomery(r, a, a, group->field_data1, ctx);
208
1.54M
}
209
210
/*-
211
 * Computes the multiplicative inverse of a in GF(p), storing the result in r.
212
 * If a is zero (or equivalent), you'll get a EC_R_CANNOT_INVERT error.
213
 * We have a Mont structure, so SCA hardening is FLT inversion.
214
 */
215
int ec_GFp_mont_field_inv(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
216
                            BN_CTX *ctx)
217
842
{
218
842
    BIGNUM *e = NULL;
219
842
    BN_CTX *new_ctx = NULL;
220
842
    int ret = 0;
221
222
842
    if (group->field_data1 == NULL)
223
0
        return 0;
224
225
842
    if (ctx == NULL && (ctx = new_ctx = BN_CTX_secure_new()) == NULL)
226
0
        return 0;
227
228
842
    BN_CTX_start(ctx);
229
842
    if ((e = BN_CTX_get(ctx)) == NULL)
230
0
        goto err;
231
232
    /* Inverse in constant time with Fermats Little Theorem */
233
842
    if (!BN_set_word(e, 2))
234
0
        goto err;
235
842
    if (!BN_sub(e, group->field, e))
236
0
        goto err;
237
    /*-
238
     * Exponent e is public.
239
     * No need for scatter-gather or BN_FLG_CONSTTIME.
240
     */
241
842
    if (!BN_mod_exp_mont(r, a, e, group->field, ctx, group->field_data1))
242
0
        goto err;
243
244
    /* throw an error on zero */
245
842
    if (BN_is_zero(r)) {
246
0
        ECerr(EC_F_EC_GFP_MONT_FIELD_INV, EC_R_CANNOT_INVERT);
247
0
        goto err;
248
0
    }
249
250
842
    ret = 1;
251
252
842
  err:
253
842
    BN_CTX_end(ctx);
254
842
    BN_CTX_free(new_ctx);
255
842
    return ret;
256
842
}
257
258
int ec_GFp_mont_field_encode(const EC_GROUP *group, BIGNUM *r,
259
                             const BIGNUM *a, BN_CTX *ctx)
260
147k
{
261
147k
    if (group->field_data1 == NULL) {
262
0
        ECerr(EC_F_EC_GFP_MONT_FIELD_ENCODE, EC_R_NOT_INITIALIZED);
263
0
        return 0;
264
0
    }
265
266
147k
    return BN_to_montgomery(r, a, (BN_MONT_CTX *)group->field_data1, ctx);
267
147k
}
268
269
int ec_GFp_mont_field_decode(const EC_GROUP *group, BIGNUM *r,
270
                             const BIGNUM *a, BN_CTX *ctx)
271
77.6k
{
272
77.6k
    if (group->field_data1 == NULL) {
273
0
        ECerr(EC_F_EC_GFP_MONT_FIELD_DECODE, EC_R_NOT_INITIALIZED);
274
0
        return 0;
275
0
    }
276
277
77.6k
    return BN_from_montgomery(r, a, group->field_data1, ctx);
278
77.6k
}
279
280
int ec_GFp_mont_field_set_to_one(const EC_GROUP *group, BIGNUM *r,
281
                                 BN_CTX *ctx)
282
47.5k
{
283
47.5k
    if (group->field_data2 == NULL) {
284
0
        ECerr(EC_F_EC_GFP_MONT_FIELD_SET_TO_ONE, EC_R_NOT_INITIALIZED);
285
0
        return 0;
286
0
    }
287
288
47.5k
    if (!BN_copy(r, group->field_data2))
289
0
        return 0;
290
47.5k
    return 1;
291
47.5k
}