Coverage Report

Created: 2026-04-01 06:53

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/irssi/subprojects/openssl-1.1.1l/crypto/bn/bn_exp.c
Line
Count
Source
1
/*
2
 * Copyright 1995-2019 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
#include "internal/cryptlib.h"
11
#include "internal/constant_time.h"
12
#include "bn_local.h"
13
14
#include <stdlib.h>
15
#ifdef _WIN32
16
# include <malloc.h>
17
# ifndef alloca
18
#  define alloca _alloca
19
# endif
20
#elif defined(__GNUC__)
21
# ifndef alloca
22
#  define alloca(s) __builtin_alloca((s))
23
# endif
24
#elif defined(__sun)
25
# include <alloca.h>
26
#endif
27
28
#include "rsaz_exp.h"
29
30
#undef SPARC_T4_MONT
31
#if defined(OPENSSL_BN_ASM_MONT) && (defined(__sparc__) || defined(__sparc))
32
# include "sparc_arch.h"
33
extern unsigned int OPENSSL_sparcv9cap_P[];
34
# define SPARC_T4_MONT
35
#endif
36
37
/* maximum precomputation table size for *variable* sliding windows */
38
#define TABLE_SIZE      32
39
40
/* this one works - simple but works */
41
int BN_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx)
42
0
{
43
0
    int i, bits, ret = 0;
44
0
    BIGNUM *v, *rr;
45
46
0
    if (BN_get_flags(p, BN_FLG_CONSTTIME) != 0
47
0
            || BN_get_flags(a, BN_FLG_CONSTTIME) != 0) {
48
        /* BN_FLG_CONSTTIME only supported by BN_mod_exp_mont() */
49
0
        BNerr(BN_F_BN_EXP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
50
0
        return 0;
51
0
    }
52
53
0
    BN_CTX_start(ctx);
54
0
    rr = ((r == a) || (r == p)) ? BN_CTX_get(ctx) : r;
55
0
    v = BN_CTX_get(ctx);
56
0
    if (rr == NULL || v == NULL)
57
0
        goto err;
58
59
0
    if (BN_copy(v, a) == NULL)
60
0
        goto err;
61
0
    bits = BN_num_bits(p);
62
63
0
    if (BN_is_odd(p)) {
64
0
        if (BN_copy(rr, a) == NULL)
65
0
            goto err;
66
0
    } else {
67
0
        if (!BN_one(rr))
68
0
            goto err;
69
0
    }
70
71
0
    for (i = 1; i < bits; i++) {
72
0
        if (!BN_sqr(v, v, ctx))
73
0
            goto err;
74
0
        if (BN_is_bit_set(p, i)) {
75
0
            if (!BN_mul(rr, rr, v, ctx))
76
0
                goto err;
77
0
        }
78
0
    }
79
0
    if (r != rr && BN_copy(r, rr) == NULL)
80
0
        goto err;
81
82
0
    ret = 1;
83
0
 err:
84
0
    BN_CTX_end(ctx);
85
0
    bn_check_top(r);
86
0
    return ret;
87
0
}
88
89
int BN_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *m,
90
               BN_CTX *ctx)
91
0
{
92
0
    int ret;
93
94
0
    bn_check_top(a);
95
0
    bn_check_top(p);
96
0
    bn_check_top(m);
97
98
    /*-
99
     * For even modulus  m = 2^k*m_odd, it might make sense to compute
100
     * a^p mod m_odd  and  a^p mod 2^k  separately (with Montgomery
101
     * exponentiation for the odd part), using appropriate exponent
102
     * reductions, and combine the results using the CRT.
103
     *
104
     * For now, we use Montgomery only if the modulus is odd; otherwise,
105
     * exponentiation using the reciprocal-based quick remaindering
106
     * algorithm is used.
107
     *
108
     * (Timing obtained with expspeed.c [computations  a^p mod m
109
     * where  a, p, m  are of the same length: 256, 512, 1024, 2048,
110
     * 4096, 8192 bits], compared to the running time of the
111
     * standard algorithm:
112
     *
113
     *   BN_mod_exp_mont   33 .. 40 %  [AMD K6-2, Linux, debug configuration]
114
     *                     55 .. 77 %  [UltraSparc processor, but
115
     *                                  debug-solaris-sparcv8-gcc conf.]
116
     *
117
     *   BN_mod_exp_recp   50 .. 70 %  [AMD K6-2, Linux, debug configuration]
118
     *                     62 .. 118 % [UltraSparc, debug-solaris-sparcv8-gcc]
119
     *
120
     * On the Sparc, BN_mod_exp_recp was faster than BN_mod_exp_mont
121
     * at 2048 and more bits, but at 512 and 1024 bits, it was
122
     * slower even than the standard algorithm!
123
     *
124
     * "Real" timings [linux-elf, solaris-sparcv9-gcc configurations]
125
     * should be obtained when the new Montgomery reduction code
126
     * has been integrated into OpenSSL.)
127
     */
128
129
0
#define MONT_MUL_MOD
130
0
#define MONT_EXP_WORD
131
0
#define RECP_MUL_MOD
132
133
0
#ifdef MONT_MUL_MOD
134
0
    if (BN_is_odd(m)) {
135
0
# ifdef MONT_EXP_WORD
136
0
        if (a->top == 1 && !a->neg
137
0
            && (BN_get_flags(p, BN_FLG_CONSTTIME) == 0)
138
0
            && (BN_get_flags(a, BN_FLG_CONSTTIME) == 0)
139
0
            && (BN_get_flags(m, BN_FLG_CONSTTIME) == 0)) {
140
0
            BN_ULONG A = a->d[0];
141
0
            ret = BN_mod_exp_mont_word(r, A, p, m, ctx, NULL);
142
0
        } else
143
0
# endif
144
0
            ret = BN_mod_exp_mont(r, a, p, m, ctx, NULL);
145
0
    } else
146
0
#endif
147
0
#ifdef RECP_MUL_MOD
148
0
    {
149
0
        ret = BN_mod_exp_recp(r, a, p, m, ctx);
150
0
    }
151
#else
152
    {
153
        ret = BN_mod_exp_simple(r, a, p, m, ctx);
154
    }
155
#endif
156
157
0
    bn_check_top(r);
158
0
    return ret;
159
0
}
160
161
int BN_mod_exp_recp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
162
                    const BIGNUM *m, BN_CTX *ctx)
163
0
{
164
0
    int i, j, bits, ret = 0, wstart, wend, window, wvalue;
165
0
    int start = 1;
166
0
    BIGNUM *aa;
167
    /* Table of variables obtained from 'ctx' */
168
0
    BIGNUM *val[TABLE_SIZE];
169
0
    BN_RECP_CTX recp;
170
171
0
    if (BN_get_flags(p, BN_FLG_CONSTTIME) != 0
172
0
            || BN_get_flags(a, BN_FLG_CONSTTIME) != 0
173
0
            || BN_get_flags(m, BN_FLG_CONSTTIME) != 0) {
174
        /* BN_FLG_CONSTTIME only supported by BN_mod_exp_mont() */
175
0
        BNerr(BN_F_BN_MOD_EXP_RECP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
176
0
        return 0;
177
0
    }
178
179
0
    bits = BN_num_bits(p);
180
0
    if (bits == 0) {
181
        /* x**0 mod 1, or x**0 mod -1 is still zero. */
182
0
        if (BN_abs_is_word(m, 1)) {
183
0
            ret = 1;
184
0
            BN_zero(r);
185
0
        } else {
186
0
            ret = BN_one(r);
187
0
        }
188
0
        return ret;
189
0
    }
190
191
0
    BN_CTX_start(ctx);
192
0
    aa = BN_CTX_get(ctx);
193
0
    val[0] = BN_CTX_get(ctx);
194
0
    if (val[0] == NULL)
195
0
        goto err;
196
197
0
    BN_RECP_CTX_init(&recp);
198
0
    if (m->neg) {
199
        /* ignore sign of 'm' */
200
0
        if (!BN_copy(aa, m))
201
0
            goto err;
202
0
        aa->neg = 0;
203
0
        if (BN_RECP_CTX_set(&recp, aa, ctx) <= 0)
204
0
            goto err;
205
0
    } else {
206
0
        if (BN_RECP_CTX_set(&recp, m, ctx) <= 0)
207
0
            goto err;
208
0
    }
209
210
0
    if (!BN_nnmod(val[0], a, m, ctx))
211
0
        goto err;               /* 1 */
212
0
    if (BN_is_zero(val[0])) {
213
0
        BN_zero(r);
214
0
        ret = 1;
215
0
        goto err;
216
0
    }
217
218
0
    window = BN_window_bits_for_exponent_size(bits);
219
0
    if (window > 1) {
220
0
        if (!BN_mod_mul_reciprocal(aa, val[0], val[0], &recp, ctx))
221
0
            goto err;           /* 2 */
222
0
        j = 1 << (window - 1);
223
0
        for (i = 1; i < j; i++) {
224
0
            if (((val[i] = BN_CTX_get(ctx)) == NULL) ||
225
0
                !BN_mod_mul_reciprocal(val[i], val[i - 1], aa, &recp, ctx))
226
0
                goto err;
227
0
        }
228
0
    }
229
230
0
    start = 1;                  /* This is used to avoid multiplication etc
231
                                 * when there is only the value '1' in the
232
                                 * buffer. */
233
0
    wvalue = 0;                 /* The 'value' of the window */
234
0
    wstart = bits - 1;          /* The top bit of the window */
235
0
    wend = 0;                   /* The bottom bit of the window */
236
237
0
    if (!BN_one(r))
238
0
        goto err;
239
240
0
    for (;;) {
241
0
        if (BN_is_bit_set(p, wstart) == 0) {
242
0
            if (!start)
243
0
                if (!BN_mod_mul_reciprocal(r, r, r, &recp, ctx))
244
0
                    goto err;
245
0
            if (wstart == 0)
246
0
                break;
247
0
            wstart--;
248
0
            continue;
249
0
        }
250
        /*
251
         * We now have wstart on a 'set' bit, we now need to work out how bit
252
         * a window to do.  To do this we need to scan forward until the last
253
         * set bit before the end of the window
254
         */
255
0
        j = wstart;
256
0
        wvalue = 1;
257
0
        wend = 0;
258
0
        for (i = 1; i < window; i++) {
259
0
            if (wstart - i < 0)
260
0
                break;
261
0
            if (BN_is_bit_set(p, wstart - i)) {
262
0
                wvalue <<= (i - wend);
263
0
                wvalue |= 1;
264
0
                wend = i;
265
0
            }
266
0
        }
267
268
        /* wend is the size of the current window */
269
0
        j = wend + 1;
270
        /* add the 'bytes above' */
271
0
        if (!start)
272
0
            for (i = 0; i < j; i++) {
273
0
                if (!BN_mod_mul_reciprocal(r, r, r, &recp, ctx))
274
0
                    goto err;
275
0
            }
276
277
        /* wvalue will be an odd number < 2^window */
278
0
        if (!BN_mod_mul_reciprocal(r, r, val[wvalue >> 1], &recp, ctx))
279
0
            goto err;
280
281
        /* move the 'window' down further */
282
0
        wstart -= wend + 1;
283
0
        wvalue = 0;
284
0
        start = 0;
285
0
        if (wstart < 0)
286
0
            break;
287
0
    }
288
0
    ret = 1;
289
0
 err:
290
0
    BN_CTX_end(ctx);
291
0
    BN_RECP_CTX_free(&recp);
292
0
    bn_check_top(r);
293
0
    return ret;
294
0
}
295
296
int BN_mod_exp_mont(BIGNUM *rr, const BIGNUM *a, const BIGNUM *p,
297
                    const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *in_mont)
298
0
{
299
0
    int i, j, bits, ret = 0, wstart, wend, window, wvalue;
300
0
    int start = 1;
301
0
    BIGNUM *d, *r;
302
0
    const BIGNUM *aa;
303
    /* Table of variables obtained from 'ctx' */
304
0
    BIGNUM *val[TABLE_SIZE];
305
0
    BN_MONT_CTX *mont = NULL;
306
307
0
    if (BN_get_flags(p, BN_FLG_CONSTTIME) != 0
308
0
            || BN_get_flags(a, BN_FLG_CONSTTIME) != 0
309
0
            || BN_get_flags(m, BN_FLG_CONSTTIME) != 0) {
310
0
        return BN_mod_exp_mont_consttime(rr, a, p, m, ctx, in_mont);
311
0
    }
312
313
0
    bn_check_top(a);
314
0
    bn_check_top(p);
315
0
    bn_check_top(m);
316
317
0
    if (!BN_is_odd(m)) {
318
0
        BNerr(BN_F_BN_MOD_EXP_MONT, BN_R_CALLED_WITH_EVEN_MODULUS);
319
0
        return 0;
320
0
    }
321
0
    bits = BN_num_bits(p);
322
0
    if (bits == 0) {
323
        /* x**0 mod 1, or x**0 mod -1 is still zero. */
324
0
        if (BN_abs_is_word(m, 1)) {
325
0
            ret = 1;
326
0
            BN_zero(rr);
327
0
        } else {
328
0
            ret = BN_one(rr);
329
0
        }
330
0
        return ret;
331
0
    }
332
333
0
    BN_CTX_start(ctx);
334
0
    d = BN_CTX_get(ctx);
335
0
    r = BN_CTX_get(ctx);
336
0
    val[0] = BN_CTX_get(ctx);
337
0
    if (val[0] == NULL)
338
0
        goto err;
339
340
    /*
341
     * If this is not done, things will break in the montgomery part
342
     */
343
344
0
    if (in_mont != NULL)
345
0
        mont = in_mont;
346
0
    else {
347
0
        if ((mont = BN_MONT_CTX_new()) == NULL)
348
0
            goto err;
349
0
        if (!BN_MONT_CTX_set(mont, m, ctx))
350
0
            goto err;
351
0
    }
352
353
0
    if (a->neg || BN_ucmp(a, m) >= 0) {
354
0
        if (!BN_nnmod(val[0], a, m, ctx))
355
0
            goto err;
356
0
        aa = val[0];
357
0
    } else
358
0
        aa = a;
359
0
    if (!bn_to_mont_fixed_top(val[0], aa, mont, ctx))
360
0
        goto err;               /* 1 */
361
362
0
    window = BN_window_bits_for_exponent_size(bits);
363
0
    if (window > 1) {
364
0
        if (!bn_mul_mont_fixed_top(d, val[0], val[0], mont, ctx))
365
0
            goto err;           /* 2 */
366
0
        j = 1 << (window - 1);
367
0
        for (i = 1; i < j; i++) {
368
0
            if (((val[i] = BN_CTX_get(ctx)) == NULL) ||
369
0
                !bn_mul_mont_fixed_top(val[i], val[i - 1], d, mont, ctx))
370
0
                goto err;
371
0
        }
372
0
    }
373
374
0
    start = 1;                  /* This is used to avoid multiplication etc
375
                                 * when there is only the value '1' in the
376
                                 * buffer. */
377
0
    wvalue = 0;                 /* The 'value' of the window */
378
0
    wstart = bits - 1;          /* The top bit of the window */
379
0
    wend = 0;                   /* The bottom bit of the window */
380
381
0
#if 1                           /* by Shay Gueron's suggestion */
382
0
    j = m->top;                 /* borrow j */
383
0
    if (m->d[j - 1] & (((BN_ULONG)1) << (BN_BITS2 - 1))) {
384
0
        if (bn_wexpand(r, j) == NULL)
385
0
            goto err;
386
        /* 2^(top*BN_BITS2) - m */
387
0
        r->d[0] = (0 - m->d[0]) & BN_MASK2;
388
0
        for (i = 1; i < j; i++)
389
0
            r->d[i] = (~m->d[i]) & BN_MASK2;
390
0
        r->top = j;
391
0
        r->flags |= BN_FLG_FIXED_TOP;
392
0
    } else
393
0
#endif
394
0
    if (!bn_to_mont_fixed_top(r, BN_value_one(), mont, ctx))
395
0
        goto err;
396
0
    for (;;) {
397
0
        if (BN_is_bit_set(p, wstart) == 0) {
398
0
            if (!start) {
399
0
                if (!bn_mul_mont_fixed_top(r, r, r, mont, ctx))
400
0
                    goto err;
401
0
            }
402
0
            if (wstart == 0)
403
0
                break;
404
0
            wstart--;
405
0
            continue;
406
0
        }
407
        /*
408
         * We now have wstart on a 'set' bit, we now need to work out how bit
409
         * a window to do.  To do this we need to scan forward until the last
410
         * set bit before the end of the window
411
         */
412
0
        j = wstart;
413
0
        wvalue = 1;
414
0
        wend = 0;
415
0
        for (i = 1; i < window; i++) {
416
0
            if (wstart - i < 0)
417
0
                break;
418
0
            if (BN_is_bit_set(p, wstart - i)) {
419
0
                wvalue <<= (i - wend);
420
0
                wvalue |= 1;
421
0
                wend = i;
422
0
            }
423
0
        }
424
425
        /* wend is the size of the current window */
426
0
        j = wend + 1;
427
        /* add the 'bytes above' */
428
0
        if (!start)
429
0
            for (i = 0; i < j; i++) {
430
0
                if (!bn_mul_mont_fixed_top(r, r, r, mont, ctx))
431
0
                    goto err;
432
0
            }
433
434
        /* wvalue will be an odd number < 2^window */
435
0
        if (!bn_mul_mont_fixed_top(r, r, val[wvalue >> 1], mont, ctx))
436
0
            goto err;
437
438
        /* move the 'window' down further */
439
0
        wstart -= wend + 1;
440
0
        wvalue = 0;
441
0
        start = 0;
442
0
        if (wstart < 0)
443
0
            break;
444
0
    }
445
    /*
446
     * Done with zero-padded intermediate BIGNUMs. Final BN_from_montgomery
447
     * removes padding [if any] and makes return value suitable for public
448
     * API consumer.
449
     */
450
#if defined(SPARC_T4_MONT)
451
    if (OPENSSL_sparcv9cap_P[0] & (SPARCV9_VIS3 | SPARCV9_PREFER_FPU)) {
452
        j = mont->N.top;        /* borrow j */
453
        val[0]->d[0] = 1;       /* borrow val[0] */
454
        for (i = 1; i < j; i++)
455
            val[0]->d[i] = 0;
456
        val[0]->top = j;
457
        if (!BN_mod_mul_montgomery(rr, r, val[0], mont, ctx))
458
            goto err;
459
    } else
460
#endif
461
0
    if (!BN_from_montgomery(rr, r, mont, ctx))
462
0
        goto err;
463
0
    ret = 1;
464
0
 err:
465
0
    if (in_mont == NULL)
466
0
        BN_MONT_CTX_free(mont);
467
0
    BN_CTX_end(ctx);
468
0
    bn_check_top(rr);
469
0
    return ret;
470
0
}
471
472
static BN_ULONG bn_get_bits(const BIGNUM *a, int bitpos)
473
0
{
474
0
    BN_ULONG ret = 0;
475
0
    int wordpos;
476
477
0
    wordpos = bitpos / BN_BITS2;
478
0
    bitpos %= BN_BITS2;
479
0
    if (wordpos >= 0 && wordpos < a->top) {
480
0
        ret = a->d[wordpos] & BN_MASK2;
481
0
        if (bitpos) {
482
0
            ret >>= bitpos;
483
0
            if (++wordpos < a->top)
484
0
                ret |= a->d[wordpos] << (BN_BITS2 - bitpos);
485
0
        }
486
0
    }
487
488
0
    return ret & BN_MASK2;
489
0
}
490
491
/*
492
 * BN_mod_exp_mont_consttime() stores the precomputed powers in a specific
493
 * layout so that accessing any of these table values shows the same access
494
 * pattern as far as cache lines are concerned.  The following functions are
495
 * used to transfer a BIGNUM from/to that table.
496
 */
497
498
static int MOD_EXP_CTIME_COPY_TO_PREBUF(const BIGNUM *b, int top,
499
                                        unsigned char *buf, int idx,
500
                                        int window)
501
0
{
502
0
    int i, j;
503
0
    int width = 1 << window;
504
0
    BN_ULONG *table = (BN_ULONG *)buf;
505
506
0
    if (top > b->top)
507
0
        top = b->top;           /* this works because 'buf' is explicitly
508
                                 * zeroed */
509
0
    for (i = 0, j = idx; i < top; i++, j += width) {
510
0
        table[j] = b->d[i];
511
0
    }
512
513
0
    return 1;
514
0
}
515
516
static int MOD_EXP_CTIME_COPY_FROM_PREBUF(BIGNUM *b, int top,
517
                                          unsigned char *buf, int idx,
518
                                          int window)
519
0
{
520
0
    int i, j;
521
0
    int width = 1 << window;
522
    /*
523
     * We declare table 'volatile' in order to discourage compiler
524
     * from reordering loads from the table. Concern is that if
525
     * reordered in specific manner loads might give away the
526
     * information we are trying to conceal. Some would argue that
527
     * compiler can reorder them anyway, but it can as well be
528
     * argued that doing so would be violation of standard...
529
     */
530
0
    volatile BN_ULONG *table = (volatile BN_ULONG *)buf;
531
532
0
    if (bn_wexpand(b, top) == NULL)
533
0
        return 0;
534
535
0
    if (window <= 3) {
536
0
        for (i = 0; i < top; i++, table += width) {
537
0
            BN_ULONG acc = 0;
538
539
0
            for (j = 0; j < width; j++) {
540
0
                acc |= table[j] &
541
0
                       ((BN_ULONG)0 - (constant_time_eq_int(j,idx)&1));
542
0
            }
543
544
0
            b->d[i] = acc;
545
0
        }
546
0
    } else {
547
0
        int xstride = 1 << (window - 2);
548
0
        BN_ULONG y0, y1, y2, y3;
549
550
0
        i = idx >> (window - 2);        /* equivalent of idx / xstride */
551
0
        idx &= xstride - 1;             /* equivalent of idx % xstride */
552
553
0
        y0 = (BN_ULONG)0 - (constant_time_eq_int(i,0)&1);
554
0
        y1 = (BN_ULONG)0 - (constant_time_eq_int(i,1)&1);
555
0
        y2 = (BN_ULONG)0 - (constant_time_eq_int(i,2)&1);
556
0
        y3 = (BN_ULONG)0 - (constant_time_eq_int(i,3)&1);
557
558
0
        for (i = 0; i < top; i++, table += width) {
559
0
            BN_ULONG acc = 0;
560
561
0
            for (j = 0; j < xstride; j++) {
562
0
                acc |= ( (table[j + 0 * xstride] & y0) |
563
0
                         (table[j + 1 * xstride] & y1) |
564
0
                         (table[j + 2 * xstride] & y2) |
565
0
                         (table[j + 3 * xstride] & y3) )
566
0
                       & ((BN_ULONG)0 - (constant_time_eq_int(j,idx)&1));
567
0
            }
568
569
0
            b->d[i] = acc;
570
0
        }
571
0
    }
572
573
0
    b->top = top;
574
0
    b->flags |= BN_FLG_FIXED_TOP;
575
0
    return 1;
576
0
}
577
578
/*
579
 * Given a pointer value, compute the next address that is a cache line
580
 * multiple.
581
 */
582
#define MOD_EXP_CTIME_ALIGN(x_) \
583
0
        ((unsigned char*)(x_) + (MOD_EXP_CTIME_MIN_CACHE_LINE_WIDTH - (((size_t)(x_)) & (MOD_EXP_CTIME_MIN_CACHE_LINE_MASK))))
584
585
/*
586
 * This variant of BN_mod_exp_mont() uses fixed windows and the special
587
 * precomputation memory layout to limit data-dependency to a minimum to
588
 * protect secret exponents (cf. the hyper-threading timing attacks pointed
589
 * out by Colin Percival,
590
 * http://www.daemonology.net/hyperthreading-considered-harmful/)
591
 */
592
int BN_mod_exp_mont_consttime(BIGNUM *rr, const BIGNUM *a, const BIGNUM *p,
593
                              const BIGNUM *m, BN_CTX *ctx,
594
                              BN_MONT_CTX *in_mont)
595
0
{
596
0
    int i, bits, ret = 0, window, wvalue, wmask, window0;
597
0
    int top;
598
0
    BN_MONT_CTX *mont = NULL;
599
600
0
    int numPowers;
601
0
    unsigned char *powerbufFree = NULL;
602
0
    int powerbufLen = 0;
603
0
    unsigned char *powerbuf = NULL;
604
0
    BIGNUM tmp, am;
605
#if defined(SPARC_T4_MONT)
606
    unsigned int t4 = 0;
607
#endif
608
609
0
    bn_check_top(a);
610
0
    bn_check_top(p);
611
0
    bn_check_top(m);
612
613
0
    if (!BN_is_odd(m)) {
614
0
        BNerr(BN_F_BN_MOD_EXP_MONT_CONSTTIME, BN_R_CALLED_WITH_EVEN_MODULUS);
615
0
        return 0;
616
0
    }
617
618
0
    top = m->top;
619
620
    /*
621
     * Use all bits stored in |p|, rather than |BN_num_bits|, so we do not leak
622
     * whether the top bits are zero.
623
     */
624
0
    bits = p->top * BN_BITS2;
625
0
    if (bits == 0) {
626
        /* x**0 mod 1, or x**0 mod -1 is still zero. */
627
0
        if (BN_abs_is_word(m, 1)) {
628
0
            ret = 1;
629
0
            BN_zero(rr);
630
0
        } else {
631
0
            ret = BN_one(rr);
632
0
        }
633
0
        return ret;
634
0
    }
635
636
0
    BN_CTX_start(ctx);
637
638
    /*
639
     * Allocate a montgomery context if it was not supplied by the caller. If
640
     * this is not done, things will break in the montgomery part.
641
     */
642
0
    if (in_mont != NULL)
643
0
        mont = in_mont;
644
0
    else {
645
0
        if ((mont = BN_MONT_CTX_new()) == NULL)
646
0
            goto err;
647
0
        if (!BN_MONT_CTX_set(mont, m, ctx))
648
0
            goto err;
649
0
    }
650
651
0
    if (a->neg || BN_ucmp(a, m) >= 0) {
652
0
        BIGNUM *reduced = BN_CTX_get(ctx);
653
0
        if (reduced == NULL
654
0
            || !BN_nnmod(reduced, a, m, ctx)) {
655
0
            goto err;
656
0
        }
657
0
        a = reduced;
658
0
    }
659
660
#ifdef RSAZ_ENABLED
661
    /*
662
     * If the size of the operands allow it, perform the optimized
663
     * RSAZ exponentiation. For further information see
664
     * crypto/bn/rsaz_exp.c and accompanying assembly modules.
665
     */
666
    if ((16 == a->top) && (16 == p->top) && (BN_num_bits(m) == 1024)
667
        && rsaz_avx2_eligible()) {
668
        if (NULL == bn_wexpand(rr, 16))
669
            goto err;
670
        RSAZ_1024_mod_exp_avx2(rr->d, a->d, p->d, m->d, mont->RR.d,
671
                               mont->n0[0]);
672
        rr->top = 16;
673
        rr->neg = 0;
674
        bn_correct_top(rr);
675
        ret = 1;
676
        goto err;
677
    } else if ((8 == a->top) && (8 == p->top) && (BN_num_bits(m) == 512)) {
678
        if (NULL == bn_wexpand(rr, 8))
679
            goto err;
680
        RSAZ_512_mod_exp(rr->d, a->d, p->d, m->d, mont->n0[0], mont->RR.d);
681
        rr->top = 8;
682
        rr->neg = 0;
683
        bn_correct_top(rr);
684
        ret = 1;
685
        goto err;
686
    }
687
#endif
688
689
    /* Get the window size to use with size of p. */
690
0
    window = BN_window_bits_for_ctime_exponent_size(bits);
691
#if defined(SPARC_T4_MONT)
692
    if (window >= 5 && (top & 15) == 0 && top <= 64 &&
693
        (OPENSSL_sparcv9cap_P[1] & (CFR_MONTMUL | CFR_MONTSQR)) ==
694
        (CFR_MONTMUL | CFR_MONTSQR) && (t4 = OPENSSL_sparcv9cap_P[0]))
695
        window = 5;
696
    else
697
#endif
698
#if defined(OPENSSL_BN_ASM_MONT5)
699
    if (window >= 5) {
700
        window = 5;             /* ~5% improvement for RSA2048 sign, and even
701
                                 * for RSA4096 */
702
        /* reserve space for mont->N.d[] copy */
703
        powerbufLen += top * sizeof(mont->N.d[0]);
704
    }
705
#endif
706
0
    (void)0;
707
708
    /*
709
     * Allocate a buffer large enough to hold all of the pre-computed powers
710
     * of am, am itself and tmp.
711
     */
712
0
    numPowers = 1 << window;
713
0
    powerbufLen += sizeof(m->d[0]) * (top * numPowers +
714
0
                                      ((2 * top) >
715
0
                                       numPowers ? (2 * top) : numPowers));
716
0
#ifdef alloca
717
0
    if (powerbufLen < 3072)
718
0
        powerbufFree =
719
0
            alloca(powerbufLen + MOD_EXP_CTIME_MIN_CACHE_LINE_WIDTH);
720
0
    else
721
0
#endif
722
0
        if ((powerbufFree =
723
0
             OPENSSL_malloc(powerbufLen + MOD_EXP_CTIME_MIN_CACHE_LINE_WIDTH))
724
0
            == NULL)
725
0
        goto err;
726
727
0
    powerbuf = MOD_EXP_CTIME_ALIGN(powerbufFree);
728
0
    memset(powerbuf, 0, powerbufLen);
729
730
0
#ifdef alloca
731
0
    if (powerbufLen < 3072)
732
0
        powerbufFree = NULL;
733
0
#endif
734
735
    /* lay down tmp and am right after powers table */
736
0
    tmp.d = (BN_ULONG *)(powerbuf + sizeof(m->d[0]) * top * numPowers);
737
0
    am.d = tmp.d + top;
738
0
    tmp.top = am.top = 0;
739
0
    tmp.dmax = am.dmax = top;
740
0
    tmp.neg = am.neg = 0;
741
0
    tmp.flags = am.flags = BN_FLG_STATIC_DATA;
742
743
    /* prepare a^0 in Montgomery domain */
744
0
#if 1                           /* by Shay Gueron's suggestion */
745
0
    if (m->d[top - 1] & (((BN_ULONG)1) << (BN_BITS2 - 1))) {
746
        /* 2^(top*BN_BITS2) - m */
747
0
        tmp.d[0] = (0 - m->d[0]) & BN_MASK2;
748
0
        for (i = 1; i < top; i++)
749
0
            tmp.d[i] = (~m->d[i]) & BN_MASK2;
750
0
        tmp.top = top;
751
0
    } else
752
0
#endif
753
0
    if (!bn_to_mont_fixed_top(&tmp, BN_value_one(), mont, ctx))
754
0
        goto err;
755
756
    /* prepare a^1 in Montgomery domain */
757
0
    if (!bn_to_mont_fixed_top(&am, a, mont, ctx))
758
0
        goto err;
759
760
#if defined(SPARC_T4_MONT)
761
    if (t4) {
762
        typedef int (*bn_pwr5_mont_f) (BN_ULONG *tp, const BN_ULONG *np,
763
                                       const BN_ULONG *n0, const void *table,
764
                                       int power, int bits);
765
        int bn_pwr5_mont_t4_8(BN_ULONG *tp, const BN_ULONG *np,
766
                              const BN_ULONG *n0, const void *table,
767
                              int power, int bits);
768
        int bn_pwr5_mont_t4_16(BN_ULONG *tp, const BN_ULONG *np,
769
                               const BN_ULONG *n0, const void *table,
770
                               int power, int bits);
771
        int bn_pwr5_mont_t4_24(BN_ULONG *tp, const BN_ULONG *np,
772
                               const BN_ULONG *n0, const void *table,
773
                               int power, int bits);
774
        int bn_pwr5_mont_t4_32(BN_ULONG *tp, const BN_ULONG *np,
775
                               const BN_ULONG *n0, const void *table,
776
                               int power, int bits);
777
        static const bn_pwr5_mont_f pwr5_funcs[4] = {
778
            bn_pwr5_mont_t4_8, bn_pwr5_mont_t4_16,
779
            bn_pwr5_mont_t4_24, bn_pwr5_mont_t4_32
780
        };
781
        bn_pwr5_mont_f pwr5_worker = pwr5_funcs[top / 16 - 1];
782
783
        typedef int (*bn_mul_mont_f) (BN_ULONG *rp, const BN_ULONG *ap,
784
                                      const void *bp, const BN_ULONG *np,
785
                                      const BN_ULONG *n0);
786
        int bn_mul_mont_t4_8(BN_ULONG *rp, const BN_ULONG *ap, const void *bp,
787
                             const BN_ULONG *np, const BN_ULONG *n0);
788
        int bn_mul_mont_t4_16(BN_ULONG *rp, const BN_ULONG *ap,
789
                              const void *bp, const BN_ULONG *np,
790
                              const BN_ULONG *n0);
791
        int bn_mul_mont_t4_24(BN_ULONG *rp, const BN_ULONG *ap,
792
                              const void *bp, const BN_ULONG *np,
793
                              const BN_ULONG *n0);
794
        int bn_mul_mont_t4_32(BN_ULONG *rp, const BN_ULONG *ap,
795
                              const void *bp, const BN_ULONG *np,
796
                              const BN_ULONG *n0);
797
        static const bn_mul_mont_f mul_funcs[4] = {
798
            bn_mul_mont_t4_8, bn_mul_mont_t4_16,
799
            bn_mul_mont_t4_24, bn_mul_mont_t4_32
800
        };
801
        bn_mul_mont_f mul_worker = mul_funcs[top / 16 - 1];
802
803
        void bn_mul_mont_vis3(BN_ULONG *rp, const BN_ULONG *ap,
804
                              const void *bp, const BN_ULONG *np,
805
                              const BN_ULONG *n0, int num);
806
        void bn_mul_mont_t4(BN_ULONG *rp, const BN_ULONG *ap,
807
                            const void *bp, const BN_ULONG *np,
808
                            const BN_ULONG *n0, int num);
809
        void bn_mul_mont_gather5_t4(BN_ULONG *rp, const BN_ULONG *ap,
810
                                    const void *table, const BN_ULONG *np,
811
                                    const BN_ULONG *n0, int num, int power);
812
        void bn_flip_n_scatter5_t4(const BN_ULONG *inp, size_t num,
813
                                   void *table, size_t power);
814
        void bn_gather5_t4(BN_ULONG *out, size_t num,
815
                           void *table, size_t power);
816
        void bn_flip_t4(BN_ULONG *dst, BN_ULONG *src, size_t num);
817
818
        BN_ULONG *np = mont->N.d, *n0 = mont->n0;
819
        int stride = 5 * (6 - (top / 16 - 1)); /* multiple of 5, but less
820
                                                * than 32 */
821
822
        /*
823
         * BN_to_montgomery can contaminate words above .top [in
824
         * BN_DEBUG[_DEBUG] build]...
825
         */
826
        for (i = am.top; i < top; i++)
827
            am.d[i] = 0;
828
        for (i = tmp.top; i < top; i++)
829
            tmp.d[i] = 0;
830
831
        bn_flip_n_scatter5_t4(tmp.d, top, powerbuf, 0);
832
        bn_flip_n_scatter5_t4(am.d, top, powerbuf, 1);
833
        if (!(*mul_worker) (tmp.d, am.d, am.d, np, n0) &&
834
            !(*mul_worker) (tmp.d, am.d, am.d, np, n0))
835
            bn_mul_mont_vis3(tmp.d, am.d, am.d, np, n0, top);
836
        bn_flip_n_scatter5_t4(tmp.d, top, powerbuf, 2);
837
838
        for (i = 3; i < 32; i++) {
839
            /* Calculate a^i = a^(i-1) * a */
840
            if (!(*mul_worker) (tmp.d, tmp.d, am.d, np, n0) &&
841
                !(*mul_worker) (tmp.d, tmp.d, am.d, np, n0))
842
                bn_mul_mont_vis3(tmp.d, tmp.d, am.d, np, n0, top);
843
            bn_flip_n_scatter5_t4(tmp.d, top, powerbuf, i);
844
        }
845
846
        /* switch to 64-bit domain */
847
        np = alloca(top * sizeof(BN_ULONG));
848
        top /= 2;
849
        bn_flip_t4(np, mont->N.d, top);
850
851
        /*
852
         * The exponent may not have a whole number of fixed-size windows.
853
         * To simplify the main loop, the initial window has between 1 and
854
         * full-window-size bits such that what remains is always a whole
855
         * number of windows
856
         */
857
        window0 = (bits - 1) % 5 + 1;
858
        wmask = (1 << window0) - 1;
859
        bits -= window0;
860
        wvalue = bn_get_bits(p, bits) & wmask;
861
        bn_gather5_t4(tmp.d, top, powerbuf, wvalue);
862
863
        /*
864
         * Scan the exponent one window at a time starting from the most
865
         * significant bits.
866
         */
867
        while (bits > 0) {
868
            if (bits < stride)
869
                stride = bits;
870
            bits -= stride;
871
            wvalue = bn_get_bits(p, bits);
872
873
            if ((*pwr5_worker) (tmp.d, np, n0, powerbuf, wvalue, stride))
874
                continue;
875
            /* retry once and fall back */
876
            if ((*pwr5_worker) (tmp.d, np, n0, powerbuf, wvalue, stride))
877
                continue;
878
879
            bits += stride - 5;
880
            wvalue >>= stride - 5;
881
            wvalue &= 31;
882
            bn_mul_mont_t4(tmp.d, tmp.d, tmp.d, np, n0, top);
883
            bn_mul_mont_t4(tmp.d, tmp.d, tmp.d, np, n0, top);
884
            bn_mul_mont_t4(tmp.d, tmp.d, tmp.d, np, n0, top);
885
            bn_mul_mont_t4(tmp.d, tmp.d, tmp.d, np, n0, top);
886
            bn_mul_mont_t4(tmp.d, tmp.d, tmp.d, np, n0, top);
887
            bn_mul_mont_gather5_t4(tmp.d, tmp.d, powerbuf, np, n0, top,
888
                                   wvalue);
889
        }
890
891
        bn_flip_t4(tmp.d, tmp.d, top);
892
        top *= 2;
893
        /* back to 32-bit domain */
894
        tmp.top = top;
895
        bn_correct_top(&tmp);
896
        OPENSSL_cleanse(np, top * sizeof(BN_ULONG));
897
    } else
898
#endif
899
#if defined(OPENSSL_BN_ASM_MONT5)
900
    if (window == 5 && top > 1) {
901
        /*
902
         * This optimization uses ideas from http://eprint.iacr.org/2011/239,
903
         * specifically optimization of cache-timing attack countermeasures
904
         * and pre-computation optimization.
905
         */
906
907
        /*
908
         * Dedicated window==4 case improves 512-bit RSA sign by ~15%, but as
909
         * 512-bit RSA is hardly relevant, we omit it to spare size...
910
         */
911
        void bn_mul_mont_gather5(BN_ULONG *rp, const BN_ULONG *ap,
912
                                 const void *table, const BN_ULONG *np,
913
                                 const BN_ULONG *n0, int num, int power);
914
        void bn_scatter5(const BN_ULONG *inp, size_t num,
915
                         void *table, size_t power);
916
        void bn_gather5(BN_ULONG *out, size_t num, void *table, size_t power);
917
        void bn_power5(BN_ULONG *rp, const BN_ULONG *ap,
918
                       const void *table, const BN_ULONG *np,
919
                       const BN_ULONG *n0, int num, int power);
920
        int bn_get_bits5(const BN_ULONG *ap, int off);
921
        int bn_from_montgomery(BN_ULONG *rp, const BN_ULONG *ap,
922
                               const BN_ULONG *not_used, const BN_ULONG *np,
923
                               const BN_ULONG *n0, int num);
924
925
        BN_ULONG *n0 = mont->n0, *np;
926
927
        /*
928
         * BN_to_montgomery can contaminate words above .top [in
929
         * BN_DEBUG[_DEBUG] build]...
930
         */
931
        for (i = am.top; i < top; i++)
932
            am.d[i] = 0;
933
        for (i = tmp.top; i < top; i++)
934
            tmp.d[i] = 0;
935
936
        /*
937
         * copy mont->N.d[] to improve cache locality
938
         */
939
        for (np = am.d + top, i = 0; i < top; i++)
940
            np[i] = mont->N.d[i];
941
942
        bn_scatter5(tmp.d, top, powerbuf, 0);
943
        bn_scatter5(am.d, am.top, powerbuf, 1);
944
        bn_mul_mont(tmp.d, am.d, am.d, np, n0, top);
945
        bn_scatter5(tmp.d, top, powerbuf, 2);
946
947
# if 0
948
        for (i = 3; i < 32; i++) {
949
            /* Calculate a^i = a^(i-1) * a */
950
            bn_mul_mont_gather5(tmp.d, am.d, powerbuf, np, n0, top, i - 1);
951
            bn_scatter5(tmp.d, top, powerbuf, i);
952
        }
953
# else
954
        /* same as above, but uses squaring for 1/2 of operations */
955
        for (i = 4; i < 32; i *= 2) {
956
            bn_mul_mont(tmp.d, tmp.d, tmp.d, np, n0, top);
957
            bn_scatter5(tmp.d, top, powerbuf, i);
958
        }
959
        for (i = 3; i < 8; i += 2) {
960
            int j;
961
            bn_mul_mont_gather5(tmp.d, am.d, powerbuf, np, n0, top, i - 1);
962
            bn_scatter5(tmp.d, top, powerbuf, i);
963
            for (j = 2 * i; j < 32; j *= 2) {
964
                bn_mul_mont(tmp.d, tmp.d, tmp.d, np, n0, top);
965
                bn_scatter5(tmp.d, top, powerbuf, j);
966
            }
967
        }
968
        for (; i < 16; i += 2) {
969
            bn_mul_mont_gather5(tmp.d, am.d, powerbuf, np, n0, top, i - 1);
970
            bn_scatter5(tmp.d, top, powerbuf, i);
971
            bn_mul_mont(tmp.d, tmp.d, tmp.d, np, n0, top);
972
            bn_scatter5(tmp.d, top, powerbuf, 2 * i);
973
        }
974
        for (; i < 32; i += 2) {
975
            bn_mul_mont_gather5(tmp.d, am.d, powerbuf, np, n0, top, i - 1);
976
            bn_scatter5(tmp.d, top, powerbuf, i);
977
        }
978
# endif
979
        /*
980
         * The exponent may not have a whole number of fixed-size windows.
981
         * To simplify the main loop, the initial window has between 1 and
982
         * full-window-size bits such that what remains is always a whole
983
         * number of windows
984
         */
985
        window0 = (bits - 1) % 5 + 1;
986
        wmask = (1 << window0) - 1;
987
        bits -= window0;
988
        wvalue = bn_get_bits(p, bits) & wmask;
989
        bn_gather5(tmp.d, top, powerbuf, wvalue);
990
991
        /*
992
         * Scan the exponent one window at a time starting from the most
993
         * significant bits.
994
         */
995
        if (top & 7) {
996
            while (bits > 0) {
997
                bn_mul_mont(tmp.d, tmp.d, tmp.d, np, n0, top);
998
                bn_mul_mont(tmp.d, tmp.d, tmp.d, np, n0, top);
999
                bn_mul_mont(tmp.d, tmp.d, tmp.d, np, n0, top);
1000
                bn_mul_mont(tmp.d, tmp.d, tmp.d, np, n0, top);
1001
                bn_mul_mont(tmp.d, tmp.d, tmp.d, np, n0, top);
1002
                bn_mul_mont_gather5(tmp.d, tmp.d, powerbuf, np, n0, top,
1003
                                    bn_get_bits5(p->d, bits -= 5));
1004
            }
1005
        } else {
1006
            while (bits > 0) {
1007
                bn_power5(tmp.d, tmp.d, powerbuf, np, n0, top,
1008
                          bn_get_bits5(p->d, bits -= 5));
1009
            }
1010
        }
1011
1012
        ret = bn_from_montgomery(tmp.d, tmp.d, NULL, np, n0, top);
1013
        tmp.top = top;
1014
        bn_correct_top(&tmp);
1015
        if (ret) {
1016
            if (!BN_copy(rr, &tmp))
1017
                ret = 0;
1018
            goto err;           /* non-zero ret means it's not error */
1019
        }
1020
    } else
1021
#endif
1022
0
    {
1023
0
        if (!MOD_EXP_CTIME_COPY_TO_PREBUF(&tmp, top, powerbuf, 0, window))
1024
0
            goto err;
1025
0
        if (!MOD_EXP_CTIME_COPY_TO_PREBUF(&am, top, powerbuf, 1, window))
1026
0
            goto err;
1027
1028
        /*
1029
         * If the window size is greater than 1, then calculate
1030
         * val[i=2..2^winsize-1]. Powers are computed as a*a^(i-1) (even
1031
         * powers could instead be computed as (a^(i/2))^2 to use the slight
1032
         * performance advantage of sqr over mul).
1033
         */
1034
0
        if (window > 1) {
1035
0
            if (!bn_mul_mont_fixed_top(&tmp, &am, &am, mont, ctx))
1036
0
                goto err;
1037
0
            if (!MOD_EXP_CTIME_COPY_TO_PREBUF(&tmp, top, powerbuf, 2,
1038
0
                                              window))
1039
0
                goto err;
1040
0
            for (i = 3; i < numPowers; i++) {
1041
                /* Calculate a^i = a^(i-1) * a */
1042
0
                if (!bn_mul_mont_fixed_top(&tmp, &am, &tmp, mont, ctx))
1043
0
                    goto err;
1044
0
                if (!MOD_EXP_CTIME_COPY_TO_PREBUF(&tmp, top, powerbuf, i,
1045
0
                                                  window))
1046
0
                    goto err;
1047
0
            }
1048
0
        }
1049
1050
        /*
1051
         * The exponent may not have a whole number of fixed-size windows.
1052
         * To simplify the main loop, the initial window has between 1 and
1053
         * full-window-size bits such that what remains is always a whole
1054
         * number of windows
1055
         */
1056
0
        window0 = (bits - 1) % window + 1;
1057
0
        wmask = (1 << window0) - 1;
1058
0
        bits -= window0;
1059
0
        wvalue = bn_get_bits(p, bits) & wmask;
1060
0
        if (!MOD_EXP_CTIME_COPY_FROM_PREBUF(&tmp, top, powerbuf, wvalue,
1061
0
                                            window))
1062
0
            goto err;
1063
1064
0
        wmask = (1 << window) - 1;
1065
        /*
1066
         * Scan the exponent one window at a time starting from the most
1067
         * significant bits.
1068
         */
1069
0
        while (bits > 0) {
1070
1071
            /* Square the result window-size times */
1072
0
            for (i = 0; i < window; i++)
1073
0
                if (!bn_mul_mont_fixed_top(&tmp, &tmp, &tmp, mont, ctx))
1074
0
                    goto err;
1075
1076
            /*
1077
             * Get a window's worth of bits from the exponent
1078
             * This avoids calling BN_is_bit_set for each bit, which
1079
             * is not only slower but also makes each bit vulnerable to
1080
             * EM (and likely other) side-channel attacks like One&Done
1081
             * (for details see "One&Done: A Single-Decryption EM-Based
1082
             *  Attack on OpenSSL's Constant-Time Blinded RSA" by M. Alam,
1083
             *  H. Khan, M. Dey, N. Sinha, R. Callan, A. Zajic, and
1084
             *  M. Prvulovic, in USENIX Security'18)
1085
             */
1086
0
            bits -= window;
1087
0
            wvalue = bn_get_bits(p, bits) & wmask;
1088
            /*
1089
             * Fetch the appropriate pre-computed value from the pre-buf
1090
             */
1091
0
            if (!MOD_EXP_CTIME_COPY_FROM_PREBUF(&am, top, powerbuf, wvalue,
1092
0
                                                window))
1093
0
                goto err;
1094
1095
            /* Multiply the result into the intermediate result */
1096
0
            if (!bn_mul_mont_fixed_top(&tmp, &tmp, &am, mont, ctx))
1097
0
                goto err;
1098
0
        }
1099
0
    }
1100
1101
    /*
1102
     * Done with zero-padded intermediate BIGNUMs. Final BN_from_montgomery
1103
     * removes padding [if any] and makes return value suitable for public
1104
     * API consumer.
1105
     */
1106
#if defined(SPARC_T4_MONT)
1107
    if (OPENSSL_sparcv9cap_P[0] & (SPARCV9_VIS3 | SPARCV9_PREFER_FPU)) {
1108
        am.d[0] = 1;            /* borrow am */
1109
        for (i = 1; i < top; i++)
1110
            am.d[i] = 0;
1111
        if (!BN_mod_mul_montgomery(rr, &tmp, &am, mont, ctx))
1112
            goto err;
1113
    } else
1114
#endif
1115
0
    if (!BN_from_montgomery(rr, &tmp, mont, ctx))
1116
0
        goto err;
1117
0
    ret = 1;
1118
0
 err:
1119
0
    if (in_mont == NULL)
1120
0
        BN_MONT_CTX_free(mont);
1121
0
    if (powerbuf != NULL) {
1122
0
        OPENSSL_cleanse(powerbuf, powerbufLen);
1123
0
        OPENSSL_free(powerbufFree);
1124
0
    }
1125
0
    BN_CTX_end(ctx);
1126
0
    return ret;
1127
0
}
1128
1129
int BN_mod_exp_mont_word(BIGNUM *rr, BN_ULONG a, const BIGNUM *p,
1130
                         const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *in_mont)
1131
0
{
1132
0
    BN_MONT_CTX *mont = NULL;
1133
0
    int b, bits, ret = 0;
1134
0
    int r_is_one;
1135
0
    BN_ULONG w, next_w;
1136
0
    BIGNUM *r, *t;
1137
0
    BIGNUM *swap_tmp;
1138
0
#define BN_MOD_MUL_WORD(r, w, m) \
1139
0
                (BN_mul_word(r, (w)) && \
1140
0
                (/* BN_ucmp(r, (m)) < 0 ? 1 :*/  \
1141
0
                        (BN_mod(t, r, m, ctx) && (swap_tmp = r, r = t, t = swap_tmp, 1))))
1142
    /*
1143
     * BN_MOD_MUL_WORD is only used with 'w' large, so the BN_ucmp test is
1144
     * probably more overhead than always using BN_mod (which uses BN_copy if
1145
     * a similar test returns true).
1146
     */
1147
    /*
1148
     * We can use BN_mod and do not need BN_nnmod because our accumulator is
1149
     * never negative (the result of BN_mod does not depend on the sign of
1150
     * the modulus).
1151
     */
1152
0
#define BN_TO_MONTGOMERY_WORD(r, w, mont) \
1153
0
                (BN_set_word(r, (w)) && BN_to_montgomery(r, r, (mont), ctx))
1154
1155
0
    if (BN_get_flags(p, BN_FLG_CONSTTIME) != 0
1156
0
            || BN_get_flags(m, BN_FLG_CONSTTIME) != 0) {
1157
        /* BN_FLG_CONSTTIME only supported by BN_mod_exp_mont() */
1158
0
        BNerr(BN_F_BN_MOD_EXP_MONT_WORD, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1159
0
        return 0;
1160
0
    }
1161
1162
0
    bn_check_top(p);
1163
0
    bn_check_top(m);
1164
1165
0
    if (!BN_is_odd(m)) {
1166
0
        BNerr(BN_F_BN_MOD_EXP_MONT_WORD, BN_R_CALLED_WITH_EVEN_MODULUS);
1167
0
        return 0;
1168
0
    }
1169
0
    if (m->top == 1)
1170
0
        a %= m->d[0];           /* make sure that 'a' is reduced */
1171
1172
0
    bits = BN_num_bits(p);
1173
0
    if (bits == 0) {
1174
        /* x**0 mod 1, or x**0 mod -1 is still zero. */
1175
0
        if (BN_abs_is_word(m, 1)) {
1176
0
            ret = 1;
1177
0
            BN_zero(rr);
1178
0
        } else {
1179
0
            ret = BN_one(rr);
1180
0
        }
1181
0
        return ret;
1182
0
    }
1183
0
    if (a == 0) {
1184
0
        BN_zero(rr);
1185
0
        ret = 1;
1186
0
        return ret;
1187
0
    }
1188
1189
0
    BN_CTX_start(ctx);
1190
0
    r = BN_CTX_get(ctx);
1191
0
    t = BN_CTX_get(ctx);
1192
0
    if (t == NULL)
1193
0
        goto err;
1194
1195
0
    if (in_mont != NULL)
1196
0
        mont = in_mont;
1197
0
    else {
1198
0
        if ((mont = BN_MONT_CTX_new()) == NULL)
1199
0
            goto err;
1200
0
        if (!BN_MONT_CTX_set(mont, m, ctx))
1201
0
            goto err;
1202
0
    }
1203
1204
0
    r_is_one = 1;               /* except for Montgomery factor */
1205
1206
    /* bits-1 >= 0 */
1207
1208
    /* The result is accumulated in the product r*w. */
1209
0
    w = a;                      /* bit 'bits-1' of 'p' is always set */
1210
0
    for (b = bits - 2; b >= 0; b--) {
1211
        /* First, square r*w. */
1212
0
        next_w = w * w;
1213
0
        if ((next_w / w) != w) { /* overflow */
1214
0
            if (r_is_one) {
1215
0
                if (!BN_TO_MONTGOMERY_WORD(r, w, mont))
1216
0
                    goto err;
1217
0
                r_is_one = 0;
1218
0
            } else {
1219
0
                if (!BN_MOD_MUL_WORD(r, w, m))
1220
0
                    goto err;
1221
0
            }
1222
0
            next_w = 1;
1223
0
        }
1224
0
        w = next_w;
1225
0
        if (!r_is_one) {
1226
0
            if (!BN_mod_mul_montgomery(r, r, r, mont, ctx))
1227
0
                goto err;
1228
0
        }
1229
1230
        /* Second, multiply r*w by 'a' if exponent bit is set. */
1231
0
        if (BN_is_bit_set(p, b)) {
1232
0
            next_w = w * a;
1233
0
            if ((next_w / a) != w) { /* overflow */
1234
0
                if (r_is_one) {
1235
0
                    if (!BN_TO_MONTGOMERY_WORD(r, w, mont))
1236
0
                        goto err;
1237
0
                    r_is_one = 0;
1238
0
                } else {
1239
0
                    if (!BN_MOD_MUL_WORD(r, w, m))
1240
0
                        goto err;
1241
0
                }
1242
0
                next_w = a;
1243
0
            }
1244
0
            w = next_w;
1245
0
        }
1246
0
    }
1247
1248
    /* Finally, set r:=r*w. */
1249
0
    if (w != 1) {
1250
0
        if (r_is_one) {
1251
0
            if (!BN_TO_MONTGOMERY_WORD(r, w, mont))
1252
0
                goto err;
1253
0
            r_is_one = 0;
1254
0
        } else {
1255
0
            if (!BN_MOD_MUL_WORD(r, w, m))
1256
0
                goto err;
1257
0
        }
1258
0
    }
1259
1260
0
    if (r_is_one) {             /* can happen only if a == 1 */
1261
0
        if (!BN_one(rr))
1262
0
            goto err;
1263
0
    } else {
1264
0
        if (!BN_from_montgomery(rr, r, mont, ctx))
1265
0
            goto err;
1266
0
    }
1267
0
    ret = 1;
1268
0
 err:
1269
0
    if (in_mont == NULL)
1270
0
        BN_MONT_CTX_free(mont);
1271
0
    BN_CTX_end(ctx);
1272
0
    bn_check_top(rr);
1273
0
    return ret;
1274
0
}
1275
1276
/* The old fallback, simple version :-) */
1277
int BN_mod_exp_simple(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
1278
                      const BIGNUM *m, BN_CTX *ctx)
1279
0
{
1280
0
    int i, j, bits, ret = 0, wstart, wend, window, wvalue;
1281
0
    int start = 1;
1282
0
    BIGNUM *d;
1283
    /* Table of variables obtained from 'ctx' */
1284
0
    BIGNUM *val[TABLE_SIZE];
1285
1286
0
    if (BN_get_flags(p, BN_FLG_CONSTTIME) != 0
1287
0
            || BN_get_flags(a, BN_FLG_CONSTTIME) != 0
1288
0
            || BN_get_flags(m, BN_FLG_CONSTTIME) != 0) {
1289
        /* BN_FLG_CONSTTIME only supported by BN_mod_exp_mont() */
1290
0
        BNerr(BN_F_BN_MOD_EXP_SIMPLE, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
1291
0
        return 0;
1292
0
    }
1293
1294
0
    bits = BN_num_bits(p);
1295
0
    if (bits == 0) {
1296
        /* x**0 mod 1, or x**0 mod -1 is still zero. */
1297
0
        if (BN_abs_is_word(m, 1)) {
1298
0
            ret = 1;
1299
0
            BN_zero(r);
1300
0
        } else {
1301
0
            ret = BN_one(r);
1302
0
        }
1303
0
        return ret;
1304
0
    }
1305
1306
0
    BN_CTX_start(ctx);
1307
0
    d = BN_CTX_get(ctx);
1308
0
    val[0] = BN_CTX_get(ctx);
1309
0
    if (val[0] == NULL)
1310
0
        goto err;
1311
1312
0
    if (!BN_nnmod(val[0], a, m, ctx))
1313
0
        goto err;               /* 1 */
1314
0
    if (BN_is_zero(val[0])) {
1315
0
        BN_zero(r);
1316
0
        ret = 1;
1317
0
        goto err;
1318
0
    }
1319
1320
0
    window = BN_window_bits_for_exponent_size(bits);
1321
0
    if (window > 1) {
1322
0
        if (!BN_mod_mul(d, val[0], val[0], m, ctx))
1323
0
            goto err;           /* 2 */
1324
0
        j = 1 << (window - 1);
1325
0
        for (i = 1; i < j; i++) {
1326
0
            if (((val[i] = BN_CTX_get(ctx)) == NULL) ||
1327
0
                !BN_mod_mul(val[i], val[i - 1], d, m, ctx))
1328
0
                goto err;
1329
0
        }
1330
0
    }
1331
1332
0
    start = 1;                  /* This is used to avoid multiplication etc
1333
                                 * when there is only the value '1' in the
1334
                                 * buffer. */
1335
0
    wvalue = 0;                 /* The 'value' of the window */
1336
0
    wstart = bits - 1;          /* The top bit of the window */
1337
0
    wend = 0;                   /* The bottom bit of the window */
1338
1339
0
    if (!BN_one(r))
1340
0
        goto err;
1341
1342
0
    for (;;) {
1343
0
        if (BN_is_bit_set(p, wstart) == 0) {
1344
0
            if (!start)
1345
0
                if (!BN_mod_mul(r, r, r, m, ctx))
1346
0
                    goto err;
1347
0
            if (wstart == 0)
1348
0
                break;
1349
0
            wstart--;
1350
0
            continue;
1351
0
        }
1352
        /*
1353
         * We now have wstart on a 'set' bit, we now need to work out how bit
1354
         * a window to do.  To do this we need to scan forward until the last
1355
         * set bit before the end of the window
1356
         */
1357
0
        j = wstart;
1358
0
        wvalue = 1;
1359
0
        wend = 0;
1360
0
        for (i = 1; i < window; i++) {
1361
0
            if (wstart - i < 0)
1362
0
                break;
1363
0
            if (BN_is_bit_set(p, wstart - i)) {
1364
0
                wvalue <<= (i - wend);
1365
0
                wvalue |= 1;
1366
0
                wend = i;
1367
0
            }
1368
0
        }
1369
1370
        /* wend is the size of the current window */
1371
0
        j = wend + 1;
1372
        /* add the 'bytes above' */
1373
0
        if (!start)
1374
0
            for (i = 0; i < j; i++) {
1375
0
                if (!BN_mod_mul(r, r, r, m, ctx))
1376
0
                    goto err;
1377
0
            }
1378
1379
        /* wvalue will be an odd number < 2^window */
1380
0
        if (!BN_mod_mul(r, r, val[wvalue >> 1], m, ctx))
1381
0
            goto err;
1382
1383
        /* move the 'window' down further */
1384
0
        wstart -= wend + 1;
1385
0
        wvalue = 0;
1386
0
        start = 0;
1387
0
        if (wstart < 0)
1388
0
            break;
1389
0
    }
1390
0
    ret = 1;
1391
0
 err:
1392
0
    BN_CTX_end(ctx);
1393
0
    bn_check_top(r);
1394
0
    return ret;
1395
0
}