Coverage Report

Created: 2025-08-11 07:04

/src/openssl/crypto/bn/bn_lib.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 1995-2024 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
#include <assert.h>
11
#include <limits.h>
12
#include "internal/cryptlib.h"
13
#include "internal/endian.h"
14
#include "bn_local.h"
15
#include <openssl/opensslconf.h>
16
#include "internal/constant_time.h"
17
18
/* This stuff appears to be completely unused, so is deprecated */
19
#ifndef OPENSSL_NO_DEPRECATED_0_9_8
20
/*-
21
 * For a 32 bit machine
22
 * 2 -   4 ==  128
23
 * 3 -   8 ==  256
24
 * 4 -  16 ==  512
25
 * 5 -  32 == 1024
26
 * 6 -  64 == 2048
27
 * 7 - 128 == 4096
28
 * 8 - 256 == 8192
29
 */
30
static int bn_limit_bits = 0;
31
static int bn_limit_num = 8;    /* (1<<bn_limit_bits) */
32
static int bn_limit_bits_low = 0;
33
static int bn_limit_num_low = 8; /* (1<<bn_limit_bits_low) */
34
static int bn_limit_bits_high = 0;
35
static int bn_limit_num_high = 8; /* (1<<bn_limit_bits_high) */
36
static int bn_limit_bits_mont = 0;
37
static int bn_limit_num_mont = 8; /* (1<<bn_limit_bits_mont) */
38
39
void BN_set_params(int mult, int high, int low, int mont)
40
0
{
41
0
    if (mult >= 0) {
42
0
        if (mult > (int)(sizeof(int) * 8) - 1)
43
0
            mult = sizeof(int) * 8 - 1;
44
0
        bn_limit_bits = mult;
45
0
        bn_limit_num = 1 << mult;
46
0
    }
47
0
    if (high >= 0) {
48
0
        if (high > (int)(sizeof(int) * 8) - 1)
49
0
            high = sizeof(int) * 8 - 1;
50
0
        bn_limit_bits_high = high;
51
0
        bn_limit_num_high = 1 << high;
52
0
    }
53
0
    if (low >= 0) {
54
0
        if (low > (int)(sizeof(int) * 8) - 1)
55
0
            low = sizeof(int) * 8 - 1;
56
0
        bn_limit_bits_low = low;
57
0
        bn_limit_num_low = 1 << low;
58
0
    }
59
0
    if (mont >= 0) {
60
0
        if (mont > (int)(sizeof(int) * 8) - 1)
61
0
            mont = sizeof(int) * 8 - 1;
62
0
        bn_limit_bits_mont = mont;
63
0
        bn_limit_num_mont = 1 << mont;
64
0
    }
65
0
}
66
67
int BN_get_params(int which)
68
0
{
69
0
    if (which == 0)
70
0
        return bn_limit_bits;
71
0
    else if (which == 1)
72
0
        return bn_limit_bits_high;
73
0
    else if (which == 2)
74
0
        return bn_limit_bits_low;
75
0
    else if (which == 3)
76
0
        return bn_limit_bits_mont;
77
0
    else
78
0
        return 0;
79
0
}
80
#endif
81
82
const BIGNUM *BN_value_one(void)
83
1.43M
{
84
1.43M
    static const BN_ULONG data_one = 1L;
85
1.43M
    static const BIGNUM const_one = {
86
1.43M
        (BN_ULONG *)&data_one, 1, 1, 0, BN_FLG_STATIC_DATA
87
1.43M
    };
88
89
1.43M
    return &const_one;
90
1.43M
}
91
92
/*
93
 * Old Visual Studio ARM compiler miscompiles BN_num_bits_word()
94
 * https://mta.openssl.org/pipermail/openssl-users/2018-August/008465.html
95
 */
96
#if defined(_MSC_VER) && defined(_ARM_) && defined(_WIN32_WCE) \
97
    && _MSC_VER>=1400 && _MSC_VER<1501
98
# define MS_BROKEN_BN_num_bits_word
99
# pragma optimize("", off)
100
#endif
101
int BN_num_bits_word(BN_ULONG l)
102
182M
{
103
182M
    BN_ULONG x, mask;
104
182M
    int bits = (l != 0);
105
106
182M
#if BN_BITS2 > 32
107
182M
    x = l >> 32;
108
182M
    mask = (0 - x) & BN_MASK2;
109
182M
    mask = (0 - (mask >> (BN_BITS2 - 1)));
110
182M
    bits += 32 & mask;
111
182M
    l ^= (x ^ l) & mask;
112
182M
#endif
113
114
182M
    x = l >> 16;
115
182M
    mask = (0 - x) & BN_MASK2;
116
182M
    mask = (0 - (mask >> (BN_BITS2 - 1)));
117
182M
    bits += 16 & mask;
118
182M
    l ^= (x ^ l) & mask;
119
120
182M
    x = l >> 8;
121
182M
    mask = (0 - x) & BN_MASK2;
122
182M
    mask = (0 - (mask >> (BN_BITS2 - 1)));
123
182M
    bits += 8 & mask;
124
182M
    l ^= (x ^ l) & mask;
125
126
182M
    x = l >> 4;
127
182M
    mask = (0 - x) & BN_MASK2;
128
182M
    mask = (0 - (mask >> (BN_BITS2 - 1)));
129
182M
    bits += 4 & mask;
130
182M
    l ^= (x ^ l) & mask;
131
132
182M
    x = l >> 2;
133
182M
    mask = (0 - x) & BN_MASK2;
134
182M
    mask = (0 - (mask >> (BN_BITS2 - 1)));
135
182M
    bits += 2 & mask;
136
182M
    l ^= (x ^ l) & mask;
137
138
182M
    x = l >> 1;
139
182M
    mask = (0 - x) & BN_MASK2;
140
182M
    mask = (0 - (mask >> (BN_BITS2 - 1)));
141
182M
    bits += 1 & mask;
142
143
182M
    return bits;
144
182M
}
145
#ifdef MS_BROKEN_BN_num_bits_word
146
# pragma optimize("", on)
147
#endif
148
149
/*
150
 * This function still leaks `a->dmax`: it's caller's responsibility to
151
 * expand the input `a` in advance to a public length.
152
 */
153
static ossl_inline
154
int bn_num_bits_consttime(const BIGNUM *a)
155
8.53M
{
156
8.53M
    int j, ret;
157
8.53M
    unsigned int mask, past_i;
158
8.53M
    int i = a->top - 1;
159
8.53M
    bn_check_top(a);
160
161
60.9M
    for (j = 0, past_i = 0, ret = 0; j < a->dmax; j++) {
162
52.4M
        mask = constant_time_eq_int(i, j); /* 0xff..ff if i==j, 0x0 otherwise */
163
164
52.4M
        ret += BN_BITS2 & (~mask & ~past_i);
165
52.4M
        ret += BN_num_bits_word(a->d[j]) & mask;
166
167
52.4M
        past_i |= mask; /* past_i will become 0xff..ff after i==j */
168
52.4M
    }
169
170
    /*
171
     * if BN_is_zero(a) => i is -1 and ret contains garbage, so we mask the
172
     * final result.
173
     */
174
8.53M
    mask = ~(constant_time_eq_int(i, ((int)-1)));
175
176
8.53M
    return ret & mask;
177
8.53M
}
178
179
int BN_num_bits(const BIGNUM *a)
180
5.41M
{
181
5.41M
    int i = a->top - 1;
182
5.41M
    bn_check_top(a);
183
184
5.41M
    if (a->flags & BN_FLG_CONSTTIME) {
185
        /*
186
         * We assume that BIGNUMs flagged as CONSTTIME have also been expanded
187
         * so that a->dmax is not leaking secret information.
188
         *
189
         * In other words, it's the caller's responsibility to ensure `a` has
190
         * been preallocated in advance to a public length if we hit this
191
         * branch.
192
         *
193
         */
194
1.42M
        return bn_num_bits_consttime(a);
195
1.42M
    }
196
197
3.99M
    if (ossl_unlikely(BN_is_zero(a)))
198
53.6k
        return 0;
199
200
3.94M
    return ((i * BN_BITS2) + BN_num_bits_word(a->d[i]));
201
3.99M
}
202
203
static void bn_free_d(BIGNUM *a, int clear)
204
57.7M
{
205
57.7M
    if (BN_get_flags(a, BN_FLG_SECURE))
206
1.53M
        OPENSSL_secure_clear_free(a->d, a->dmax * sizeof(a->d[0]));
207
56.1M
    else if (clear != 0)
208
33.3M
        OPENSSL_clear_free(a->d, a->dmax * sizeof(a->d[0]));
209
22.7M
    else
210
22.7M
        OPENSSL_free(a->d);
211
57.7M
}
212
213
214
void BN_clear_free(BIGNUM *a)
215
28.8M
{
216
28.8M
    if (a == NULL)
217
5.28M
        return;
218
23.5M
    if (a->d != NULL && !BN_get_flags(a, BN_FLG_STATIC_DATA))
219
21.2M
        bn_free_d(a, 1);
220
23.5M
    if (BN_get_flags(a, BN_FLG_MALLOCED)) {
221
2.90M
        OPENSSL_cleanse(a, sizeof(*a));
222
2.90M
        OPENSSL_free(a);
223
2.90M
    }
224
23.5M
}
225
226
void BN_free(BIGNUM *a)
227
38.8M
{
228
38.8M
    if (a == NULL)
229
16.0M
        return;
230
22.8M
    if (!BN_get_flags(a, BN_FLG_STATIC_DATA))
231
22.7M
        bn_free_d(a, 0);
232
22.8M
    if (a->flags & BN_FLG_MALLOCED)
233
22.7M
        OPENSSL_free(a);
234
22.8M
}
235
236
void bn_init(BIGNUM *a)
237
55.0M
{
238
55.0M
    static BIGNUM nilbn;
239
240
55.0M
    *a = nilbn;
241
55.0M
    bn_check_top(a);
242
55.0M
}
243
244
BIGNUM *BN_new(void)
245
25.6M
{
246
25.6M
    BIGNUM *ret;
247
248
25.6M
    if ((ret = OPENSSL_zalloc(sizeof(*ret))) == NULL)
249
0
        return NULL;
250
25.6M
    ret->flags = BN_FLG_MALLOCED;
251
25.6M
    bn_check_top(ret);
252
25.6M
    return ret;
253
25.6M
}
254
255
BIGNUM *BN_secure_new(void)
256
1.74M
{
257
1.74M
    BIGNUM *ret = BN_new();
258
259
1.74M
    if (ret != NULL)
260
1.74M
        ret->flags |= BN_FLG_SECURE;
261
1.74M
    return ret;
262
1.74M
}
263
264
/* This is used by bn_expand2() */
265
/* The caller MUST check that words > b->dmax before calling this */
266
static BN_ULONG *bn_expand_internal(const BIGNUM *b, int words)
267
10.5M
{
268
10.5M
    BN_ULONG *a = NULL;
269
270
10.5M
    if (ossl_unlikely(words > (INT_MAX / (4 * BN_BITS2)))) {
271
0
        ERR_raise(ERR_LIB_BN, BN_R_BIGNUM_TOO_LONG);
272
0
        return NULL;
273
0
    }
274
10.5M
    if (ossl_unlikely(BN_get_flags(b, BN_FLG_STATIC_DATA))) {
275
0
        ERR_raise(ERR_LIB_BN, BN_R_EXPAND_ON_STATIC_BIGNUM_DATA);
276
0
        return NULL;
277
0
    }
278
10.5M
    if (BN_get_flags(b, BN_FLG_SECURE))
279
263k
        a = OPENSSL_secure_calloc(words, sizeof(*a));
280
10.2M
    else
281
10.2M
        a = OPENSSL_calloc(words, sizeof(*a));
282
10.5M
    if (ossl_unlikely(a == NULL))
283
0
        return NULL;
284
285
10.5M
    assert(b->top <= words);
286
10.5M
    if (b->top > 0)
287
942k
        memcpy(a, b->d, sizeof(*a) * b->top);
288
289
10.5M
    return a;
290
10.5M
}
291
292
/*
293
 * This is an internal function that should not be used in applications. It
294
 * ensures that 'b' has enough room for a 'words' word number and initialises
295
 * any unused part of b->d with leading zeros. It is mostly used by the
296
 * various BIGNUM routines. If there is an error, NULL is returned. If not,
297
 * 'b' is returned.
298
 */
299
300
BIGNUM *bn_expand2(BIGNUM *b, int words)
301
10.5M
{
302
10.5M
    if (ossl_likely(words > b->dmax)) {
303
10.5M
        BN_ULONG *a = bn_expand_internal(b, words);
304
305
10.5M
        if (ossl_unlikely(!a))
306
0
            return NULL;
307
10.5M
        if (b->d != NULL)
308
2.29M
            bn_free_d(b, 1);
309
10.5M
        b->d = a;
310
10.5M
        b->dmax = words;
311
10.5M
    }
312
313
10.5M
    return b;
314
10.5M
}
315
316
BIGNUM *BN_dup(const BIGNUM *a)
317
3.18M
{
318
3.18M
    BIGNUM *t;
319
320
3.18M
    if (a == NULL)
321
0
        return NULL;
322
3.18M
    bn_check_top(a);
323
324
3.18M
    t = BN_get_flags(a, BN_FLG_SECURE) ? BN_secure_new() : BN_new();
325
3.18M
    if (t == NULL)
326
0
        return NULL;
327
3.18M
    if (!BN_copy(t, a)) {
328
0
        BN_free(t);
329
0
        return NULL;
330
0
    }
331
3.18M
    bn_check_top(t);
332
3.18M
    return t;
333
3.18M
}
334
335
BIGNUM *BN_copy(BIGNUM *a, const BIGNUM *b)
336
26.5M
{
337
26.5M
    int bn_words;
338
339
26.5M
    bn_check_top(b);
340
341
26.5M
    bn_words = BN_get_flags(b, BN_FLG_CONSTTIME) ? b->dmax : b->top;
342
343
26.5M
    if (ossl_unlikely(a == b))
344
1
        return a;
345
26.5M
    if (ossl_unlikely(bn_wexpand(a, bn_words) == NULL))
346
0
        return NULL;
347
348
26.5M
    if (ossl_likely(b->top > 0))
349
26.3M
        memcpy(a->d, b->d, sizeof(b->d[0]) * bn_words);
350
351
26.5M
    a->neg = b->neg;
352
26.5M
    a->top = b->top;
353
26.5M
    a->flags |= b->flags & BN_FLG_FIXED_TOP;
354
26.5M
    bn_check_top(a);
355
26.5M
    return a;
356
26.5M
}
357
358
0
#define FLAGS_DATA(flags) ((flags) & (BN_FLG_STATIC_DATA \
359
0
                                    | BN_FLG_CONSTTIME   \
360
0
                                    | BN_FLG_SECURE      \
361
0
                                    | BN_FLG_FIXED_TOP))
362
0
#define FLAGS_STRUCT(flags) ((flags) & (BN_FLG_MALLOCED))
363
364
void BN_swap(BIGNUM *a, BIGNUM *b)
365
0
{
366
0
    int flags_old_a, flags_old_b;
367
0
    BN_ULONG *tmp_d;
368
0
    int tmp_top, tmp_dmax, tmp_neg;
369
370
0
    bn_check_top(a);
371
0
    bn_check_top(b);
372
373
0
    flags_old_a = a->flags;
374
0
    flags_old_b = b->flags;
375
376
0
    tmp_d = a->d;
377
0
    tmp_top = a->top;
378
0
    tmp_dmax = a->dmax;
379
0
    tmp_neg = a->neg;
380
381
0
    a->d = b->d;
382
0
    a->top = b->top;
383
0
    a->dmax = b->dmax;
384
0
    a->neg = b->neg;
385
386
0
    b->d = tmp_d;
387
0
    b->top = tmp_top;
388
0
    b->dmax = tmp_dmax;
389
0
    b->neg = tmp_neg;
390
391
0
    a->flags = FLAGS_STRUCT(flags_old_a) | FLAGS_DATA(flags_old_b);
392
0
    b->flags = FLAGS_STRUCT(flags_old_b) | FLAGS_DATA(flags_old_a);
393
0
    bn_check_top(a);
394
0
    bn_check_top(b);
395
0
}
396
397
void BN_clear(BIGNUM *a)
398
398k
{
399
398k
    if (a == NULL)
400
0
        return;
401
398k
    bn_check_top(a);
402
398k
    if (a->d != NULL)
403
38.0k
        OPENSSL_cleanse(a->d, sizeof(*a->d) * a->dmax);
404
398k
    a->neg = 0;
405
398k
    a->top = 0;
406
398k
    a->flags &= ~BN_FLG_FIXED_TOP;
407
398k
}
408
409
BN_ULONG BN_get_word(const BIGNUM *a)
410
395
{
411
395
    if (a->top > 1)
412
13
        return BN_MASK2;
413
382
    else if (a->top == 1)
414
328
        return a->d[0];
415
    /* a->top == 0 */
416
54
    return 0;
417
395
}
418
419
int BN_set_word(BIGNUM *a, BN_ULONG w)
420
2.25M
{
421
2.25M
    bn_check_top(a);
422
2.25M
    if (bn_expand(a, (int)sizeof(BN_ULONG) * 8) == NULL)
423
0
        return 0;
424
2.25M
    a->neg = 0;
425
2.25M
    a->d[0] = w;
426
2.25M
    a->top = (w ? 1 : 0);
427
2.25M
    a->flags &= ~BN_FLG_FIXED_TOP;
428
2.25M
    bn_check_top(a);
429
2.25M
    return 1;
430
2.25M
}
431
432
typedef enum {BIG, LITTLE} endianness_t;
433
typedef enum {SIGNED, UNSIGNED} signedness_t;
434
435
static BIGNUM *bin2bn(const unsigned char *s, int len, BIGNUM *ret,
436
                      endianness_t endianness, signedness_t signedness)
437
9.56M
{
438
9.56M
    int inc;
439
9.56M
    const unsigned char *s2;
440
9.56M
    int inc2;
441
9.56M
    int neg = 0, xor = 0, carry = 0;
442
9.56M
    unsigned int i;
443
9.56M
    unsigned int n;
444
9.56M
    BIGNUM *bn = NULL;
445
446
    /* Negative length is not acceptable */
447
9.56M
    if (len < 0)
448
0
        return NULL;
449
450
9.56M
    if (ret == NULL)
451
5.72M
        ret = bn = BN_new();
452
9.56M
    if (ret == NULL)
453
0
        return NULL;
454
9.56M
    bn_check_top(ret);
455
456
    /*
457
     * If the input has no bits, the number is considered zero.
458
     * This makes calls with s==NULL and len==0 safe.
459
     */
460
9.56M
    if (len == 0) {
461
357k
        BN_clear(ret);
462
357k
        return ret;
463
357k
    }
464
465
    /*
466
     * The loop that does the work iterates from least to most
467
     * significant BIGNUM chunk, so we adapt parameters to transfer
468
     * input bytes accordingly.
469
     */
470
9.20M
    if (endianness == LITTLE) {
471
936k
        s2 = s + len - 1;
472
936k
        inc2 = -1;
473
936k
        inc = 1;
474
8.27M
    } else {
475
8.27M
        s2 = s;
476
8.27M
        inc2 = 1;
477
8.27M
        inc = -1;
478
8.27M
        s += len - 1;
479
8.27M
    }
480
481
    /* Take note of the signedness of the input bytes*/
482
9.20M
    if (signedness == SIGNED) {
483
0
        neg = !!(*s2 & 0x80);
484
0
        xor = neg ? 0xff : 0x00;
485
0
        carry = neg;
486
0
    }
487
488
    /*
489
     * Skip leading sign extensions (the value of |xor|).
490
     * This is the only spot where |s2| and |inc2| are used.
491
     */
492
17.9M
    for ( ; len > 0 && *s2 == xor; s2 += inc2, len--)
493
8.70M
        continue;
494
495
    /*
496
     * If there was a set of 0xff, we backtrack one byte unless the next
497
     * one has a sign bit, as the last 0xff is then part of the actual
498
     * number, rather then a mere sign extension.
499
     */
500
9.20M
    if (xor == 0xff) {
501
0
        if (len == 0 || !(*s2 & 0x80))
502
0
            len++;
503
0
    }
504
    /* If it was all zeros, we're done */
505
9.20M
    if (len == 0) {
506
144k
        ret->top = 0;
507
144k
        return ret;
508
144k
    }
509
9.06M
    n = ((len - 1) / BN_BYTES) + 1; /* Number of resulting bignum chunks */
510
9.06M
    if (bn_wexpand(ret, (int)n) == NULL) {
511
0
        BN_free(bn);
512
0
        return NULL;
513
0
    }
514
9.06M
    ret->top = n;
515
9.06M
    ret->neg = neg;
516
93.7M
    for (i = 0; n-- > 0; i++) {
517
84.6M
        BN_ULONG l = 0;        /* Accumulator */
518
84.6M
        unsigned int m = 0;    /* Offset in a bignum chunk, in bits */
519
520
731M
        for (; len > 0 && m < BN_BYTES * 8; len--, s += inc, m += 8) {
521
646M
            BN_ULONG byte_xored = *s ^ xor;
522
646M
            BN_ULONG byte = (byte_xored + carry) & 0xff;
523
524
646M
            carry = byte_xored > byte; /* Implicit 1 or 0 */
525
646M
            l |= (byte << m);
526
646M
        }
527
84.6M
        ret->d[i] = l;
528
84.6M
    }
529
    /*
530
     * need to call this due to clear byte at top if avoiding having the top
531
     * bit set (-ve number)
532
     */
533
9.06M
    bn_correct_top(ret);
534
9.06M
    return ret;
535
9.06M
}
536
537
BIGNUM *BN_bin2bn(const unsigned char *s, int len, BIGNUM *ret)
538
8.63M
{
539
8.63M
    return bin2bn(s, len, ret, BIG, UNSIGNED);
540
8.63M
}
541
542
BIGNUM *BN_signed_bin2bn(const unsigned char *s, int len, BIGNUM *ret)
543
0
{
544
0
    return bin2bn(s, len, ret, BIG, SIGNED);
545
0
}
546
547
static int bn2binpad(const BIGNUM *a, unsigned char *to, int tolen,
548
                     endianness_t endianness, signedness_t signedness)
549
1.71M
{
550
1.71M
    int inc;
551
1.71M
    int n, n8;
552
1.71M
    int xor = 0, carry = 0, ext = 0;
553
1.71M
    size_t i, lasti, j, atop, mask;
554
1.71M
    BN_ULONG l;
555
556
    /*
557
     * In case |a| is fixed-top, BN_num_bits can return bogus length,
558
     * but it's assumed that fixed-top inputs ought to be "nominated"
559
     * even for padded output, so it works out...
560
     */
561
1.71M
    n8 = BN_num_bits(a);
562
1.71M
    n = (n8 + 7) / 8;           /* This is what BN_num_bytes() does */
563
564
    /* Take note of the signedness of the bignum */
565
1.71M
    if (signedness == SIGNED) {
566
0
        xor = a->neg ? 0xff : 0x00;
567
0
        carry = a->neg;
568
569
        /*
570
         * if |n * 8 == n|, then the MSbit is set, otherwise unset.
571
         * We must compensate with one extra byte if that doesn't
572
         * correspond to the signedness of the bignum with regards
573
         * to 2's complement.
574
         */
575
0
        ext = (n * 8 == n8)
576
0
            ? !a->neg            /* MSbit set on nonnegative bignum */
577
0
            : a->neg;            /* MSbit unset on negative bignum */
578
0
    }
579
580
1.71M
    if (tolen == -1) {
581
667k
        tolen = n + ext;
582
1.04M
    } else if (tolen < n + ext) { /* uncommon/unlike case */
583
5.50k
        BIGNUM temp = *a;
584
585
5.50k
        bn_correct_top(&temp);
586
5.50k
        n8 = BN_num_bits(&temp);
587
5.50k
        n = (n8 + 7) / 8;       /* This is what BN_num_bytes() does */
588
5.50k
        if (tolen < n + ext)
589
5.50k
            return -1;
590
5.50k
    }
591
592
    /* Swipe through whole available data and don't give away padded zero. */
593
1.70M
    atop = a->dmax * BN_BYTES;
594
1.70M
    if (atop == 0) {
595
165k
        if (tolen != 0)
596
5.51k
            memset(to, '\0', tolen);
597
165k
        return tolen;
598
165k
    }
599
600
    /*
601
     * The loop that does the work iterates from least significant
602
     * to most significant BIGNUM limb, so we adapt parameters to
603
     * transfer output bytes accordingly.
604
     */
605
1.54M
    if (endianness == LITTLE) {
606
902k
        inc = 1;
607
902k
    } else {
608
639k
        inc = -1;
609
639k
        to += tolen - 1;         /* Move to the last byte, not beyond */
610
639k
    }
611
612
1.54M
    lasti = atop - 1;
613
1.54M
    atop = a->top * BN_BYTES;
614
154M
    for (i = 0, j = 0; j < (size_t)tolen; j++) {
615
153M
        unsigned char byte, byte_xored;
616
617
153M
        l = a->d[i / BN_BYTES];
618
153M
        mask = 0 - ((j - atop) >> (8 * sizeof(i) - 1));
619
153M
        byte = (unsigned char)(l >> (8 * (i % BN_BYTES)) & mask);
620
153M
        byte_xored = byte ^ xor;
621
153M
        *to = (unsigned char)(byte_xored + carry);
622
153M
        carry = byte_xored > *to; /* Implicit 1 or 0 */
623
153M
        to += inc;
624
153M
        i += (i - lasti) >> (8 * sizeof(i) - 1); /* stay on last limb */
625
153M
    }
626
627
1.54M
    return tolen;
628
1.70M
}
629
630
int BN_bn2binpad(const BIGNUM *a, unsigned char *to, int tolen)
631
175k
{
632
175k
    if (tolen < 0)
633
0
        return -1;
634
175k
    return bn2binpad(a, to, tolen, BIG, UNSIGNED);
635
175k
}
636
637
int BN_signed_bn2bin(const BIGNUM *a, unsigned char *to, int tolen)
638
0
{
639
0
    if (tolen < 0)
640
0
        return -1;
641
0
    return bn2binpad(a, to, tolen, BIG, SIGNED);
642
0
}
643
644
int BN_bn2bin(const BIGNUM *a, unsigned char *to)
645
772k
{
646
772k
    return bn2binpad(a, to, -1, BIG, UNSIGNED);
647
772k
}
648
649
BIGNUM *BN_lebin2bn(const unsigned char *s, int len, BIGNUM *ret)
650
936k
{
651
936k
    return bin2bn(s, len, ret, LITTLE, UNSIGNED);
652
936k
}
653
654
BIGNUM *BN_signed_lebin2bn(const unsigned char *s, int len, BIGNUM *ret)
655
0
{
656
0
    return bin2bn(s, len, ret, LITTLE, SIGNED);
657
0
}
658
659
int BN_bn2lebinpad(const BIGNUM *a, unsigned char *to, int tolen)
660
1.00M
{
661
1.00M
    if (tolen < 0)
662
0
        return -1;
663
1.00M
    return bn2binpad(a, to, tolen, LITTLE, UNSIGNED);
664
1.00M
}
665
666
int BN_signed_bn2lebin(const BIGNUM *a, unsigned char *to, int tolen)
667
0
{
668
0
    if (tolen < 0)
669
0
        return -1;
670
0
    return bn2binpad(a, to, tolen, LITTLE, SIGNED);
671
0
}
672
673
BIGNUM *BN_native2bn(const unsigned char *s, int len, BIGNUM *ret)
674
956k
{
675
956k
    DECLARE_IS_ENDIAN;
676
677
956k
    if (IS_LITTLE_ENDIAN)
678
956k
        return BN_lebin2bn(s, len, ret);
679
0
    return BN_bin2bn(s, len, ret);
680
956k
}
681
682
BIGNUM *BN_signed_native2bn(const unsigned char *s, int len, BIGNUM *ret)
683
0
{
684
0
    DECLARE_IS_ENDIAN;
685
686
0
    if (IS_LITTLE_ENDIAN)
687
0
        return BN_signed_lebin2bn(s, len, ret);
688
0
    return BN_signed_bin2bn(s, len, ret);
689
0
}
690
691
int BN_bn2nativepad(const BIGNUM *a, unsigned char *to, int tolen)
692
956k
{
693
956k
    DECLARE_IS_ENDIAN;
694
695
956k
    if (IS_LITTLE_ENDIAN)
696
956k
        return BN_bn2lebinpad(a, to, tolen);
697
0
    return BN_bn2binpad(a, to, tolen);
698
956k
}
699
700
int BN_signed_bn2native(const BIGNUM *a, unsigned char *to, int tolen)
701
0
{
702
0
    DECLARE_IS_ENDIAN;
703
704
0
    if (IS_LITTLE_ENDIAN)
705
0
        return BN_signed_bn2lebin(a, to, tolen);
706
0
    return BN_signed_bn2bin(a, to, tolen);
707
0
}
708
709
int BN_ucmp(const BIGNUM *a, const BIGNUM *b)
710
109M
{
711
109M
    int i;
712
109M
    BN_ULONG t1, t2, *ap, *bp;
713
714
109M
    ap = a->d;
715
109M
    bp = b->d;
716
717
109M
    if (BN_get_flags(a, BN_FLG_CONSTTIME)
718
109M
            && a->top == b->top) {
719
2.49M
        int res = 0;
720
721
12.7M
        for (i = 0; i < b->top; i++) {
722
10.2M
            res = constant_time_select_int((int)constant_time_lt_bn(ap[i], bp[i]),
723
10.2M
                                           -1, res);
724
10.2M
            res = constant_time_select_int((int)constant_time_lt_bn(bp[i], ap[i]),
725
10.2M
                                           1, res);
726
10.2M
        }
727
2.49M
        return res;
728
2.49M
    }
729
730
106M
    bn_check_top(a);
731
106M
    bn_check_top(b);
732
733
106M
    i = a->top - b->top;
734
106M
    if (i != 0)
735
12.6M
        return i;
736
737
99.1M
    for (i = a->top - 1; i >= 0; i--) {
738
97.5M
        t1 = ap[i];
739
97.5M
        t2 = bp[i];
740
97.5M
        if (t1 != t2)
741
92.4M
            return ((t1 > t2) ? 1 : -1);
742
97.5M
    }
743
1.53M
    return 0;
744
93.9M
}
745
746
int BN_cmp(const BIGNUM *a, const BIGNUM *b)
747
17.5M
{
748
17.5M
    int i;
749
17.5M
    int gt, lt;
750
17.5M
    BN_ULONG t1, t2;
751
752
17.5M
    if ((a == NULL) || (b == NULL)) {
753
0
        if (a != NULL)
754
0
            return -1;
755
0
        else if (b != NULL)
756
0
            return 1;
757
0
        else
758
0
            return 0;
759
0
    }
760
761
17.5M
    bn_check_top(a);
762
17.5M
    bn_check_top(b);
763
764
17.5M
    if (a->neg != b->neg) {
765
1.12k
        if (a->neg)
766
356
            return -1;
767
769
        else
768
769
            return 1;
769
1.12k
    }
770
17.5M
    if (a->neg == 0) {
771
17.5M
        gt = 1;
772
17.5M
        lt = -1;
773
17.5M
    } else {
774
10.2k
        gt = -1;
775
10.2k
        lt = 1;
776
10.2k
    }
777
778
17.5M
    if (a->top > b->top)
779
2.10M
        return gt;
780
15.4M
    if (a->top < b->top)
781
1.26M
        return lt;
782
37.8M
    for (i = a->top - 1; i >= 0; i--) {
783
36.0M
        t1 = a->d[i];
784
36.0M
        t2 = b->d[i];
785
36.0M
        if (t1 > t2)
786
5.03M
            return gt;
787
30.9M
        if (t1 < t2)
788
7.40M
            return lt;
789
30.9M
    }
790
1.77M
    return 0;
791
14.2M
}
792
793
int BN_set_bit(BIGNUM *a, int n)
794
1.75M
{
795
1.75M
    int i, j, k;
796
797
1.75M
    if (n < 0)
798
0
        return 0;
799
800
1.75M
    i = n / BN_BITS2;
801
1.75M
    j = n % BN_BITS2;
802
1.75M
    if (a->top <= i) {
803
1.75M
        if (bn_wexpand(a, i + 1) == NULL)
804
0
            return 0;
805
15.6M
        for (k = a->top; k < i + 1; k++)
806
13.9M
            a->d[k] = 0;
807
1.75M
        a->top = i + 1;
808
1.75M
        a->flags &= ~BN_FLG_FIXED_TOP;
809
1.75M
    }
810
811
1.75M
    a->d[i] |= (((BN_ULONG)1) << j);
812
1.75M
    bn_check_top(a);
813
1.75M
    return 1;
814
1.75M
}
815
816
int BN_clear_bit(BIGNUM *a, int n)
817
109
{
818
109
    int i, j;
819
820
109
    bn_check_top(a);
821
109
    if (n < 0)
822
0
        return 0;
823
824
109
    i = n / BN_BITS2;
825
109
    j = n % BN_BITS2;
826
109
    if (a->top <= i)
827
0
        return 0;
828
829
109
    a->d[i] &= (~(((BN_ULONG)1) << j));
830
109
    bn_correct_top(a);
831
109
    return 1;
832
109
}
833
834
int BN_is_bit_set(const BIGNUM *a, int n)
835
39.3M
{
836
39.3M
    int i, j;
837
838
39.3M
    bn_check_top(a);
839
39.3M
    if (ossl_unlikely(n < 0))
840
533
        return 0;
841
39.3M
    i = n / BN_BITS2;
842
39.3M
    j = n % BN_BITS2;
843
39.3M
    if (ossl_unlikely(a->top <= i))
844
1.89k
        return 0;
845
39.3M
    return (int)(((a->d[i]) >> j) & ((BN_ULONG)1));
846
39.3M
}
847
848
int ossl_bn_mask_bits_fixed_top(BIGNUM *a, int n)
849
4.40k
{
850
4.40k
    int b, w;
851
852
4.40k
    if (n < 0)
853
0
        return 0;
854
855
4.40k
    w = n / BN_BITS2;
856
4.40k
    b = n % BN_BITS2;
857
4.40k
    if (w >= a->top)
858
0
        return 0;
859
4.40k
    if (b == 0)
860
4.40k
        a->top = w;
861
0
    else {
862
0
        a->top = w + 1;
863
0
        a->d[w] &= ~(BN_MASK2 << b);
864
0
    }
865
4.40k
    a->flags |= BN_FLG_FIXED_TOP;
866
4.40k
    return 1;
867
4.40k
}
868
869
int BN_mask_bits(BIGNUM *a, int n)
870
0
{
871
0
    int ret;
872
873
0
    bn_check_top(a);
874
0
    ret = ossl_bn_mask_bits_fixed_top(a, n);
875
0
    if (ret)
876
0
        bn_correct_top(a);
877
0
    return ret;
878
0
}
879
880
void BN_set_negative(BIGNUM *a, int b)
881
1.79M
{
882
1.79M
    if (b && !BN_is_zero(a))
883
635k
        a->neg = 1;
884
1.16M
    else
885
1.16M
        a->neg = 0;
886
1.79M
}
887
888
int bn_cmp_words(const BN_ULONG *a, const BN_ULONG *b, int n)
889
23.3M
{
890
23.3M
    int i;
891
23.3M
    BN_ULONG aa, bb;
892
893
23.3M
    if (ossl_unlikely(n == 0))
894
0
        return 0;
895
896
23.3M
    aa = a[n - 1];
897
23.3M
    bb = b[n - 1];
898
23.3M
    if (ossl_likely(aa != bb))
899
20.6M
        return ((aa > bb) ? 1 : -1);
900
21.3M
    for (i = n - 2; i >= 0; i--) {
901
20.3M
        aa = a[i];
902
20.3M
        bb = b[i];
903
20.3M
        if (aa != bb)
904
1.69M
            return ((aa > bb) ? 1 : -1);
905
20.3M
    }
906
1.02M
    return 0;
907
2.71M
}
908
909
/*
910
 * Here follows a specialised variants of bn_cmp_words().  It has the
911
 * capability of performing the operation on arrays of different sizes. The
912
 * sizes of those arrays is expressed through cl, which is the common length
913
 * ( basically, min(len(a),len(b)) ), and dl, which is the delta between the
914
 * two lengths, calculated as len(a)-len(b). All lengths are the number of
915
 * BN_ULONGs...
916
 */
917
918
int bn_cmp_part_words(const BN_ULONG *a, const BN_ULONG *b, int cl, int dl)
919
93.4M
{
920
93.4M
    int n, i;
921
93.4M
    n = cl - 1;
922
923
93.4M
    if (dl < 0) {
924
2.75M
        for (i = dl; i < 0; i++) {
925
2.69M
            if (b[n - i] != 0)
926
1.76M
                return -1;      /* a < b */
927
2.69M
        }
928
1.83M
    }
929
91.6M
    if (dl > 0) {
930
4.19M
        for (i = dl; i > 0; i--) {
931
3.99M
            if (a[n + i] != 0)
932
1.64M
                return 1;       /* a > b */
933
3.99M
        }
934
1.84M
    }
935
90.0M
    return bn_cmp_words(a, b, cl);
936
91.6M
}
937
938
/*-
939
 * Constant-time conditional swap of a and b.
940
 * a and b are swapped if condition is not 0.
941
 * nwords is the number of words to swap.
942
 * Assumes that at least nwords are allocated in both a and b.
943
 * Assumes that no more than nwords are used by either a or b.
944
 */
945
void BN_consttime_swap(BN_ULONG condition, BIGNUM *a, BIGNUM *b, int nwords)
946
95.2M
{
947
95.2M
    BN_ULONG t;
948
95.2M
    int i;
949
950
95.2M
    bn_wcheck_size(a, nwords);
951
95.2M
    bn_wcheck_size(b, nwords);
952
953
95.2M
    condition = ((~condition & ((condition - 1))) >> (BN_BITS2 - 1)) - 1;
954
955
95.2M
    t = (a->top ^ b->top) & condition;
956
95.2M
    a->top ^= t;
957
95.2M
    b->top ^= t;
958
959
95.2M
    t = (a->neg ^ b->neg) & condition;
960
95.2M
    a->neg ^= t;
961
95.2M
    b->neg ^= t;
962
963
    /*-
964
     * BN_FLG_STATIC_DATA: indicates that data may not be written to. Intention
965
     * is actually to treat it as it's read-only data, and some (if not most)
966
     * of it does reside in read-only segment. In other words observation of
967
     * BN_FLG_STATIC_DATA in BN_consttime_swap should be treated as fatal
968
     * condition. It would either cause SEGV or effectively cause data
969
     * corruption.
970
     *
971
     * BN_FLG_MALLOCED: refers to BN structure itself, and hence must be
972
     * preserved.
973
     *
974
     * BN_FLG_SECURE: must be preserved, because it determines how x->d was
975
     * allocated and hence how to free it.
976
     *
977
     * BN_FLG_CONSTTIME: sufficient to mask and swap
978
     *
979
     * BN_FLG_FIXED_TOP: indicates that we haven't called bn_correct_top() on
980
     * the data, so the d array may be padded with additional 0 values (i.e.
981
     * top could be greater than the minimal value that it could be). We should
982
     * be swapping it
983
     */
984
985
95.2M
#define BN_CONSTTIME_SWAP_FLAGS (BN_FLG_CONSTTIME | BN_FLG_FIXED_TOP)
986
987
95.2M
    t = ((a->flags ^ b->flags) & BN_CONSTTIME_SWAP_FLAGS) & condition;
988
95.2M
    a->flags ^= t;
989
95.2M
    b->flags ^= t;
990
991
    /* conditionally swap the data */
992
13.1G
    for (i = 0; i < nwords; i++) {
993
13.0G
        t = (a->d[i] ^ b->d[i]) & condition;
994
13.0G
        a->d[i] ^= t;
995
13.0G
        b->d[i] ^= t;
996
13.0G
    }
997
95.2M
}
998
999
#undef BN_CONSTTIME_SWAP_FLAGS
1000
1001
/* Bits of security, see SP800-57 */
1002
1003
int BN_security_bits(int L, int N)
1004
155k
{
1005
155k
    int secbits, bits;
1006
155k
    if (L >= 15360)
1007
904
        secbits = 256;
1008
154k
    else if (L >= 7680)
1009
1.11k
        secbits = 192;
1010
153k
    else if (L >= 3072)
1011
2.86k
        secbits = 128;
1012
150k
    else if (L >= 2048)
1013
3.32k
        secbits = 112;
1014
147k
    else if (L >= 1024)
1015
102k
        secbits = 80;
1016
44.9k
    else
1017
44.9k
        return 0;
1018
110k
    if (N == -1)
1019
10.9k
        return secbits;
1020
99.8k
    bits = N / 2;
1021
99.8k
    if (bits < 80)
1022
8.31k
        return 0;
1023
91.5k
    return bits >= secbits ? secbits : bits;
1024
99.8k
}
1025
1026
void BN_zero_ex(BIGNUM *a)
1027
769M
{
1028
769M
    a->neg = 0;
1029
769M
    a->top = 0;
1030
769M
    a->flags &= ~BN_FLG_FIXED_TOP;
1031
769M
}
1032
1033
int BN_abs_is_word(const BIGNUM *a, const BN_ULONG w)
1034
59.8M
{
1035
59.8M
    return ((a->top == 1) && (a->d[0] == w)) || ((w == 0) && (a->top == 0));
1036
59.8M
}
1037
1038
int BN_is_zero(const BIGNUM *a)
1039
299M
{
1040
299M
    return a->top == 0;
1041
299M
}
1042
1043
int BN_is_one(const BIGNUM *a)
1044
58.6M
{
1045
58.6M
    return BN_abs_is_word(a, 1) && !a->neg;
1046
58.6M
}
1047
1048
int BN_is_word(const BIGNUM *a, const BN_ULONG w)
1049
283k
{
1050
283k
    return BN_abs_is_word(a, w) && (!w || !a->neg);
1051
283k
}
1052
1053
int ossl_bn_is_word_fixed_top(const BIGNUM *a, const BN_ULONG w)
1054
4.40k
{
1055
4.40k
    int res, i;
1056
4.40k
    const BN_ULONG *ap = a->d;
1057
1058
4.40k
    if (a->neg || a->top == 0)
1059
0
        return 0;
1060
1061
4.40k
    res = constant_time_select_int((int)constant_time_eq_bn(ap[0], w), 1, 0);
1062
1063
17.6k
    for (i = 1; i < a->top; i++)
1064
13.2k
        res = constant_time_select_int((int)constant_time_is_zero_bn(ap[i]),
1065
13.2k
                                       res, 0);
1066
4.40k
    return res;
1067
4.40k
}
1068
1069
int BN_is_odd(const BIGNUM *a)
1070
50.1M
{
1071
50.1M
    return (a->top > 0) && (a->d[0] & 1);
1072
50.1M
}
1073
1074
int BN_is_negative(const BIGNUM *a)
1075
7.39M
{
1076
7.39M
    return (a->neg != 0);
1077
7.39M
}
1078
1079
int BN_to_montgomery(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont,
1080
                     BN_CTX *ctx)
1081
2.07M
{
1082
2.07M
    return BN_mod_mul_montgomery(r, a, &(mont->RR), mont, ctx);
1083
2.07M
}
1084
1085
void BN_with_flags(BIGNUM *dest, const BIGNUM *b, int flags)
1086
17.7M
{
1087
17.7M
    dest->d = b->d;
1088
17.7M
    dest->top = b->top;
1089
17.7M
    dest->dmax = b->dmax;
1090
17.7M
    dest->neg = b->neg;
1091
17.7M
    dest->flags = ((dest->flags & BN_FLG_MALLOCED)
1092
17.7M
                   | (b->flags & ~BN_FLG_MALLOCED)
1093
17.7M
                   | BN_FLG_STATIC_DATA | flags);
1094
17.7M
}
1095
1096
BN_GENCB *BN_GENCB_new(void)
1097
4.89k
{
1098
4.89k
    BN_GENCB *ret;
1099
1100
4.89k
    if ((ret = OPENSSL_malloc(sizeof(*ret))) == NULL)
1101
0
        return NULL;
1102
1103
4.89k
    return ret;
1104
4.89k
}
1105
1106
void BN_GENCB_free(BN_GENCB *cb)
1107
6.57k
{
1108
6.57k
    if (cb == NULL)
1109
1.67k
        return;
1110
4.89k
    OPENSSL_free(cb);
1111
4.89k
}
1112
1113
void BN_set_flags(BIGNUM *b, int n)
1114
2.01M
{
1115
2.01M
    b->flags |= n;
1116
2.01M
}
1117
1118
int BN_get_flags(const BIGNUM *b, int n)
1119
472M
{
1120
472M
    return b->flags & n;
1121
472M
}
1122
1123
/* Populate a BN_GENCB structure with an "old"-style callback */
1124
void BN_GENCB_set_old(BN_GENCB *gencb, void (*callback) (int, int, void *),
1125
                      void *cb_arg)
1126
0
{
1127
0
    BN_GENCB *tmp_gencb = gencb;
1128
0
    tmp_gencb->ver = 1;
1129
0
    tmp_gencb->arg = cb_arg;
1130
0
    tmp_gencb->cb.cb_1 = callback;
1131
0
}
1132
1133
/* Populate a BN_GENCB structure with a "new"-style callback */
1134
void BN_GENCB_set(BN_GENCB *gencb, int (*callback) (int, int, BN_GENCB *),
1135
                  void *cb_arg)
1136
4.89k
{
1137
4.89k
    BN_GENCB *tmp_gencb = gencb;
1138
4.89k
    tmp_gencb->ver = 2;
1139
4.89k
    tmp_gencb->arg = cb_arg;
1140
4.89k
    tmp_gencb->cb.cb_2 = callback;
1141
4.89k
}
1142
1143
void *BN_GENCB_get_arg(BN_GENCB *cb)
1144
0
{
1145
0
    return cb->arg;
1146
0
}
1147
1148
BIGNUM *bn_wexpand(BIGNUM *a, int words)
1149
1.59G
{
1150
1.59G
    return (words <= a->dmax) ? a : bn_expand2(a, words);
1151
1.59G
}
1152
1153
void bn_correct_top_consttime(BIGNUM *a)
1154
14.2k
{
1155
14.2k
    int j, atop;
1156
14.2k
    BN_ULONG limb;
1157
14.2k
    unsigned int mask;
1158
1159
925k
    for (j = 0, atop = 0; j < a->dmax; j++) {
1160
911k
        limb = a->d[j];
1161
911k
        limb |= 0 - limb;
1162
911k
        limb >>= BN_BITS2 - 1;
1163
911k
        limb = 0 - limb;
1164
911k
        mask = (unsigned int)limb;
1165
911k
        mask &= constant_time_msb(j - a->top);
1166
911k
        atop = constant_time_select_int(mask, j + 1, atop);
1167
911k
    }
1168
1169
14.2k
    mask = constant_time_eq_int(atop, 0);
1170
14.2k
    a->top = atop;
1171
14.2k
    a->neg = constant_time_select_int(mask, 0, a->neg);
1172
14.2k
    a->flags &= ~BN_FLG_FIXED_TOP;
1173
14.2k
}
1174
1175
void bn_correct_top(BIGNUM *a)
1176
219M
{
1177
219M
    BN_ULONG *ftl;
1178
219M
    int tmp_top = a->top;
1179
1180
219M
    if (ossl_likely(tmp_top > 0)) {
1181
654M
        for (ftl = &(a->d[tmp_top]); tmp_top > 0; tmp_top--) {
1182
653M
            ftl--;
1183
653M
            if (*ftl != 0)
1184
218M
                break;
1185
653M
        }
1186
218M
        a->top = tmp_top;
1187
218M
    }
1188
219M
    if (a->top == 0)
1189
808k
        a->neg = 0;
1190
219M
    a->flags &= ~BN_FLG_FIXED_TOP;
1191
219M
    bn_pollute(a);
1192
219M
}