Coverage Report

Created: 2025-04-22 06:18

/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
176k
{
84
176k
    static const BN_ULONG data_one = 1L;
85
176k
    static const BIGNUM const_one =
86
176k
        { (BN_ULONG *)&data_one, 1, 1, 0, BN_FLG_STATIC_DATA };
87
88
176k
    return &const_one;
89
176k
}
90
91
/*
92
 * Old Visual Studio ARM compiler miscompiles BN_num_bits_word()
93
 * https://mta.openssl.org/pipermail/openssl-users/2018-August/008465.html
94
 */
95
#if defined(_MSC_VER) && defined(_ARM_) && defined(_WIN32_WCE) \
96
    && _MSC_VER>=1400 && _MSC_VER<1501
97
# define MS_BROKEN_BN_num_bits_word
98
# pragma optimize("", off)
99
#endif
100
int BN_num_bits_word(BN_ULONG l)
101
3.16M
{
102
3.16M
    BN_ULONG x, mask;
103
3.16M
    int bits = (l != 0);
104
105
3.16M
#if BN_BITS2 > 32
106
3.16M
    x = l >> 32;
107
3.16M
    mask = (0 - x) & BN_MASK2;
108
3.16M
    mask = (0 - (mask >> (BN_BITS2 - 1)));
109
3.16M
    bits += 32 & mask;
110
3.16M
    l ^= (x ^ l) & mask;
111
3.16M
#endif
112
113
3.16M
    x = l >> 16;
114
3.16M
    mask = (0 - x) & BN_MASK2;
115
3.16M
    mask = (0 - (mask >> (BN_BITS2 - 1)));
116
3.16M
    bits += 16 & mask;
117
3.16M
    l ^= (x ^ l) & mask;
118
119
3.16M
    x = l >> 8;
120
3.16M
    mask = (0 - x) & BN_MASK2;
121
3.16M
    mask = (0 - (mask >> (BN_BITS2 - 1)));
122
3.16M
    bits += 8 & mask;
123
3.16M
    l ^= (x ^ l) & mask;
124
125
3.16M
    x = l >> 4;
126
3.16M
    mask = (0 - x) & BN_MASK2;
127
3.16M
    mask = (0 - (mask >> (BN_BITS2 - 1)));
128
3.16M
    bits += 4 & mask;
129
3.16M
    l ^= (x ^ l) & mask;
130
131
3.16M
    x = l >> 2;
132
3.16M
    mask = (0 - x) & BN_MASK2;
133
3.16M
    mask = (0 - (mask >> (BN_BITS2 - 1)));
134
3.16M
    bits += 2 & mask;
135
3.16M
    l ^= (x ^ l) & mask;
136
137
3.16M
    x = l >> 1;
138
3.16M
    mask = (0 - x) & BN_MASK2;
139
3.16M
    mask = (0 - (mask >> (BN_BITS2 - 1)));
140
3.16M
    bits += 1 & mask;
141
142
3.16M
    return bits;
143
3.16M
}
144
#ifdef MS_BROKEN_BN_num_bits_word
145
# pragma optimize("", on)
146
#endif
147
148
/*
149
 * This function still leaks `a->dmax`: it's caller's responsibility to
150
 * expand the input `a` in advance to a public length.
151
 */
152
static ossl_inline
153
int bn_num_bits_consttime(const BIGNUM *a)
154
38.7k
{
155
38.7k
    int j, ret;
156
38.7k
    unsigned int mask, past_i;
157
38.7k
    int i = a->top - 1;
158
38.7k
    bn_check_top(a);
159
160
271k
    for (j = 0, past_i = 0, ret = 0; j < a->dmax; j++) {
161
232k
        mask = constant_time_eq_int(i, j); /* 0xff..ff if i==j, 0x0 otherwise */
162
163
232k
        ret += BN_BITS2 & (~mask & ~past_i);
164
232k
        ret += BN_num_bits_word(a->d[j]) & mask;
165
166
232k
        past_i |= mask; /* past_i will become 0xff..ff after i==j */
167
232k
    }
168
169
    /*
170
     * if BN_is_zero(a) => i is -1 and ret contains garbage, so we mask the
171
     * final result.
172
     */
173
38.7k
    mask = ~(constant_time_eq_int(i, ((int)-1)));
174
175
38.7k
    return ret & mask;
176
38.7k
}
177
178
int BN_num_bits(const BIGNUM *a)
179
1.98M
{
180
1.98M
    int i = a->top - 1;
181
1.98M
    bn_check_top(a);
182
183
1.98M
    if (a->flags & BN_FLG_CONSTTIME) {
184
        /*
185
         * We assume that BIGNUMs flagged as CONSTTIME have also been expanded
186
         * so that a->dmax is not leaking secret information.
187
         *
188
         * In other words, it's the caller's responsibility to ensure `a` has
189
         * been preallocated in advance to a public length if we hit this
190
         * branch.
191
         *
192
         */
193
38.7k
        return bn_num_bits_consttime(a);
194
38.7k
    }
195
196
1.95M
    if (BN_is_zero(a))
197
664
        return 0;
198
199
1.94M
    return ((i * BN_BITS2) + BN_num_bits_word(a->d[i]));
200
1.95M
}
201
202
static void bn_free_d(BIGNUM *a, int clear)
203
6.14M
{
204
6.14M
    if (BN_get_flags(a, BN_FLG_SECURE))
205
47.5k
        OPENSSL_secure_clear_free(a->d, a->dmax * sizeof(a->d[0]));
206
6.09M
    else if (clear != 0)
207
3.89M
        OPENSSL_clear_free(a->d, a->dmax * sizeof(a->d[0]));
208
2.20M
    else
209
2.20M
        OPENSSL_free(a->d);
210
6.14M
}
211
212
213
void BN_clear_free(BIGNUM *a)
214
2.89M
{
215
2.89M
    if (a == NULL)
216
151k
        return;
217
2.74M
    if (a->d != NULL && !BN_get_flags(a, BN_FLG_STATIC_DATA))
218
2.47M
        bn_free_d(a, 1);
219
2.74M
    if (BN_get_flags(a, BN_FLG_MALLOCED)) {
220
99.8k
        OPENSSL_cleanse(a, sizeof(*a));
221
99.8k
        OPENSSL_free(a);
222
99.8k
    }
223
2.74M
}
224
225
void BN_free(BIGNUM *a)
226
2.53M
{
227
2.53M
    if (a == NULL)
228
336k
        return;
229
2.20M
    if (!BN_get_flags(a, BN_FLG_STATIC_DATA))
230
2.20M
        bn_free_d(a, 0);
231
2.20M
    if (a->flags & BN_FLG_MALLOCED)
232
2.20M
        OPENSSL_free(a);
233
2.20M
}
234
235
void bn_init(BIGNUM *a)
236
4.58M
{
237
4.58M
    static BIGNUM nilbn;
238
239
4.58M
    *a = nilbn;
240
4.58M
    bn_check_top(a);
241
4.58M
}
242
243
BIGNUM *BN_new(void)
244
2.30M
{
245
2.30M
    BIGNUM *ret;
246
247
2.30M
    if ((ret = OPENSSL_zalloc(sizeof(*ret))) == NULL) {
248
0
        ERR_raise(ERR_LIB_BN, ERR_R_MALLOC_FAILURE);
249
0
        return NULL;
250
0
    }
251
2.30M
    ret->flags = BN_FLG_MALLOCED;
252
2.30M
    bn_check_top(ret);
253
2.30M
    return ret;
254
2.30M
}
255
256
 BIGNUM *BN_secure_new(void)
257
47.5k
 {
258
47.5k
     BIGNUM *ret = BN_new();
259
47.5k
     if (ret != NULL)
260
47.5k
         ret->flags |= BN_FLG_SECURE;
261
47.5k
     return ret;
262
47.5k
 }
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
6.14M
{
268
6.14M
    BN_ULONG *a = NULL;
269
270
6.14M
    if (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
6.14M
    if (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
6.14M
    if (BN_get_flags(b, BN_FLG_SECURE))
279
47.5k
        a = OPENSSL_secure_zalloc(words * sizeof(*a));
280
6.09M
    else
281
6.09M
        a = OPENSSL_zalloc(words * sizeof(*a));
282
6.14M
    if (a == NULL) {
283
0
        ERR_raise(ERR_LIB_BN, ERR_R_MALLOC_FAILURE);
284
0
        return NULL;
285
0
    }
286
287
6.14M
    assert(b->top <= words);
288
6.14M
    if (b->top > 0)
289
549k
        memcpy(a, b->d, sizeof(*a) * b->top);
290
291
6.14M
    return a;
292
6.14M
}
293
294
/*
295
 * This is an internal function that should not be used in applications. It
296
 * ensures that 'b' has enough room for a 'words' word number and initialises
297
 * any unused part of b->d with leading zeros. It is mostly used by the
298
 * various BIGNUM routines. If there is an error, NULL is returned. If not,
299
 * 'b' is returned.
300
 */
301
302
BIGNUM *bn_expand2(BIGNUM *b, int words)
303
6.14M
{
304
6.14M
    if (words > b->dmax) {
305
6.14M
        BN_ULONG *a = bn_expand_internal(b, words);
306
6.14M
        if (!a)
307
0
            return NULL;
308
6.14M
        if (b->d != NULL)
309
1.47M
            bn_free_d(b, 1);
310
6.14M
        b->d = a;
311
6.14M
        b->dmax = words;
312
6.14M
    }
313
314
6.14M
    return b;
315
6.14M
}
316
317
BIGNUM *BN_dup(const BIGNUM *a)
318
97.2k
{
319
97.2k
    BIGNUM *t;
320
321
97.2k
    if (a == NULL)
322
0
        return NULL;
323
97.2k
    bn_check_top(a);
324
325
97.2k
    t = BN_get_flags(a, BN_FLG_SECURE) ? BN_secure_new() : BN_new();
326
97.2k
    if (t == NULL)
327
0
        return NULL;
328
97.2k
    if (!BN_copy(t, a)) {
329
0
        BN_free(t);
330
0
        return NULL;
331
0
    }
332
97.2k
    bn_check_top(t);
333
97.2k
    return t;
334
97.2k
}
335
336
BIGNUM *BN_copy(BIGNUM *a, const BIGNUM *b)
337
3.41M
{
338
3.41M
    int bn_words;
339
340
3.41M
    bn_check_top(b);
341
342
3.41M
    bn_words = BN_get_flags(b, BN_FLG_CONSTTIME) ? b->dmax : b->top;
343
344
3.41M
    if (a == b)
345
0
        return a;
346
3.41M
    if (bn_wexpand(a, bn_words) == NULL)
347
0
        return NULL;
348
349
3.41M
    if (b->top > 0)
350
3.28M
        memcpy(a->d, b->d, sizeof(b->d[0]) * bn_words);
351
352
3.41M
    a->neg = b->neg;
353
3.41M
    a->top = b->top;
354
3.41M
    a->flags |= b->flags & BN_FLG_FIXED_TOP;
355
3.41M
    bn_check_top(a);
356
3.41M
    return a;
357
3.41M
}
358
359
0
#define FLAGS_DATA(flags) ((flags) & (BN_FLG_STATIC_DATA \
360
0
                                    | BN_FLG_CONSTTIME   \
361
0
                                    | BN_FLG_SECURE      \
362
0
                                    | BN_FLG_FIXED_TOP))
363
0
#define FLAGS_STRUCT(flags) ((flags) & (BN_FLG_MALLOCED))
364
365
void BN_swap(BIGNUM *a, BIGNUM *b)
366
0
{
367
0
    int flags_old_a, flags_old_b;
368
0
    BN_ULONG *tmp_d;
369
0
    int tmp_top, tmp_dmax, tmp_neg;
370
371
0
    bn_check_top(a);
372
0
    bn_check_top(b);
373
374
0
    flags_old_a = a->flags;
375
0
    flags_old_b = b->flags;
376
377
0
    tmp_d = a->d;
378
0
    tmp_top = a->top;
379
0
    tmp_dmax = a->dmax;
380
0
    tmp_neg = a->neg;
381
382
0
    a->d = b->d;
383
0
    a->top = b->top;
384
0
    a->dmax = b->dmax;
385
0
    a->neg = b->neg;
386
387
0
    b->d = tmp_d;
388
0
    b->top = tmp_top;
389
0
    b->dmax = tmp_dmax;
390
0
    b->neg = tmp_neg;
391
392
0
    a->flags = FLAGS_STRUCT(flags_old_a) | FLAGS_DATA(flags_old_b);
393
0
    b->flags = FLAGS_STRUCT(flags_old_b) | FLAGS_DATA(flags_old_a);
394
0
    bn_check_top(a);
395
0
    bn_check_top(b);
396
0
}
397
398
void BN_clear(BIGNUM *a)
399
4.41k
{
400
4.41k
    if (a == NULL)
401
0
        return;
402
4.41k
    bn_check_top(a);
403
4.41k
    if (a->d != NULL)
404
4.41k
        OPENSSL_cleanse(a->d, sizeof(*a->d) * a->dmax);
405
4.41k
    a->neg = 0;
406
4.41k
    a->top = 0;
407
4.41k
    a->flags &= ~BN_FLG_FIXED_TOP;
408
4.41k
}
409
410
BN_ULONG BN_get_word(const BIGNUM *a)
411
0
{
412
0
    if (a->top > 1)
413
0
        return BN_MASK2;
414
0
    else if (a->top == 1)
415
0
        return a->d[0];
416
    /* a->top == 0 */
417
0
    return 0;
418
0
}
419
420
int BN_set_word(BIGNUM *a, BN_ULONG w)
421
225k
{
422
225k
    bn_check_top(a);
423
225k
    if (bn_expand(a, (int)sizeof(BN_ULONG) * 8) == NULL)
424
0
        return 0;
425
225k
    a->neg = 0;
426
225k
    a->d[0] = w;
427
225k
    a->top = (w ? 1 : 0);
428
225k
    a->flags &= ~BN_FLG_FIXED_TOP;
429
225k
    bn_check_top(a);
430
225k
    return 1;
431
225k
}
432
433
BIGNUM *BN_bin2bn(const unsigned char *s, int len, BIGNUM *ret)
434
537k
{
435
537k
    unsigned int i, m;
436
537k
    unsigned int n;
437
537k
    BN_ULONG l;
438
537k
    BIGNUM *bn = NULL;
439
440
537k
    if (ret == NULL)
441
460k
        ret = bn = BN_new();
442
537k
    if (ret == NULL)
443
0
        return NULL;
444
537k
    bn_check_top(ret);
445
    /* Skip leading zero's. */
446
821k
    for ( ; len > 0 && *s == 0; s++, len--)
447
284k
        continue;
448
537k
    n = len;
449
537k
    if (n == 0) {
450
4.33k
        ret->top = 0;
451
4.33k
        return ret;
452
4.33k
    }
453
532k
    i = ((n - 1) / BN_BYTES) + 1;
454
532k
    m = ((n - 1) % (BN_BYTES));
455
532k
    if (bn_wexpand(ret, (int)i) == NULL) {
456
0
        BN_free(bn);
457
0
        return NULL;
458
0
    }
459
532k
    ret->top = i;
460
532k
    ret->neg = 0;
461
532k
    l = 0;
462
17.9M
    while (n--) {
463
17.4M
        l = (l << 8L) | *(s++);
464
17.4M
        if (m-- == 0) {
465
2.17M
            ret->d[--i] = l;
466
2.17M
            l = 0;
467
2.17M
            m = BN_BYTES - 1;
468
2.17M
        }
469
17.4M
    }
470
    /*
471
     * need to call this due to clear byte at top if avoiding having the top
472
     * bit set (-ve number)
473
     */
474
532k
    bn_correct_top(ret);
475
532k
    return ret;
476
532k
}
477
478
typedef enum {big, little} endianess_t;
479
480
/* ignore negative */
481
static
482
int bn2binpad(const BIGNUM *a, unsigned char *to, int tolen, endianess_t endianess)
483
95.6k
{
484
95.6k
    int n;
485
95.6k
    size_t i, lasti, j, atop, mask;
486
95.6k
    BN_ULONG l;
487
488
    /*
489
     * In case |a| is fixed-top, BN_num_bytes can return bogus length,
490
     * but it's assumed that fixed-top inputs ought to be "nominated"
491
     * even for padded output, so it works out...
492
     */
493
95.6k
    n = BN_num_bytes(a);
494
95.6k
    if (tolen == -1) {
495
76.8k
        tolen = n;
496
76.8k
    } else if (tolen < n) {     /* uncommon/unlike case */
497
0
        BIGNUM temp = *a;
498
499
0
        bn_correct_top(&temp);
500
0
        n = BN_num_bytes(&temp);
501
0
        if (tolen < n)
502
0
            return -1;
503
0
    }
504
505
    /* Swipe through whole available data and don't give away padded zero. */
506
95.6k
    atop = a->dmax * BN_BYTES;
507
95.6k
    if (atop == 0) {
508
37
        if (tolen != 0)
509
23
            memset(to, '\0', tolen);
510
37
        return tolen;
511
37
    }
512
513
95.6k
    lasti = atop - 1;
514
95.6k
    atop = a->top * BN_BYTES;
515
95.6k
    if (endianess == big)
516
78.2k
        to += tolen; /* start from the end of the buffer */
517
3.22M
    for (i = 0, j = 0; j < (size_t)tolen; j++) {
518
3.13M
        unsigned char val;
519
3.13M
        l = a->d[i / BN_BYTES];
520
3.13M
        mask = 0 - ((j - atop) >> (8 * sizeof(i) - 1));
521
3.13M
        val = (unsigned char)(l >> (8 * (i % BN_BYTES)) & mask);
522
3.13M
        if (endianess == big)
523
2.56M
            *--to = val;
524
567k
        else
525
567k
            *to++ = val;
526
3.13M
        i += (i - lasti) >> (8 * sizeof(i) - 1); /* stay on last limb */
527
3.13M
    }
528
529
95.6k
    return tolen;
530
95.6k
}
531
532
int BN_bn2binpad(const BIGNUM *a, unsigned char *to, int tolen)
533
1.41k
{
534
1.41k
    if (tolen < 0)
535
0
        return -1;
536
1.41k
    return bn2binpad(a, to, tolen, big);
537
1.41k
}
538
539
int BN_bn2bin(const BIGNUM *a, unsigned char *to)
540
76.8k
{
541
76.8k
    return bn2binpad(a, to, -1, big);
542
76.8k
}
543
544
BIGNUM *BN_lebin2bn(const unsigned char *s, int len, BIGNUM *ret)
545
17.4k
{
546
17.4k
    unsigned int i, m;
547
17.4k
    unsigned int n;
548
17.4k
    BN_ULONG l;
549
17.4k
    BIGNUM *bn = NULL;
550
551
17.4k
    if (ret == NULL)
552
98
        ret = bn = BN_new();
553
17.4k
    if (ret == NULL)
554
0
        return NULL;
555
17.4k
    bn_check_top(ret);
556
17.4k
    s += len;
557
    /* Skip trailing zeroes. */
558
17.5k
    for ( ; len > 0 && s[-1] == 0; s--, len--)
559
77
        continue;
560
17.4k
    n = len;
561
17.4k
    if (n == 0) {
562
21
        ret->top = 0;
563
21
        return ret;
564
21
    }
565
17.4k
    i = ((n - 1) / BN_BYTES) + 1;
566
17.4k
    m = ((n - 1) % (BN_BYTES));
567
17.4k
    if (bn_wexpand(ret, (int)i) == NULL) {
568
0
        BN_free(bn);
569
0
        return NULL;
570
0
    }
571
17.4k
    ret->top = i;
572
17.4k
    ret->neg = 0;
573
17.4k
    l = 0;
574
584k
    while (n--) {
575
567k
        s--;
576
567k
        l = (l << 8L) | *s;
577
567k
        if (m-- == 0) {
578
70.9k
            ret->d[--i] = l;
579
70.9k
            l = 0;
580
70.9k
            m = BN_BYTES - 1;
581
70.9k
        }
582
567k
    }
583
    /*
584
     * need to call this due to clear byte at top if avoiding having the top
585
     * bit set (-ve number)
586
     */
587
17.4k
    bn_correct_top(ret);
588
17.4k
    return ret;
589
17.4k
}
590
591
int BN_bn2lebinpad(const BIGNUM *a, unsigned char *to, int tolen)
592
17.4k
{
593
17.4k
    if (tolen < 0)
594
0
        return -1;
595
17.4k
    return bn2binpad(a, to, tolen, little);
596
17.4k
}
597
598
BIGNUM *BN_native2bn(const unsigned char *s, int len, BIGNUM *ret)
599
17.4k
{
600
17.4k
    DECLARE_IS_ENDIAN;
601
602
17.4k
    if (IS_LITTLE_ENDIAN)
603
17.4k
        return BN_lebin2bn(s, len, ret);
604
0
    return BN_bin2bn(s, len, ret);
605
17.4k
}
606
607
int BN_bn2nativepad(const BIGNUM *a, unsigned char *to, int tolen)
608
17.4k
{
609
17.4k
    DECLARE_IS_ENDIAN;
610
611
17.4k
    if (IS_LITTLE_ENDIAN)
612
17.4k
        return BN_bn2lebinpad(a, to, tolen);
613
0
    return BN_bn2binpad(a, to, tolen);
614
17.4k
}
615
616
int BN_ucmp(const BIGNUM *a, const BIGNUM *b)
617
11.6M
{
618
11.6M
    int i;
619
11.6M
    BN_ULONG t1, t2, *ap, *bp;
620
621
11.6M
    ap = a->d;
622
11.6M
    bp = b->d;
623
624
11.6M
    if (BN_get_flags(a, BN_FLG_CONSTTIME)
625
11.6M
            && a->top == b->top) {
626
0
        int res = 0;
627
628
0
        for (i = 0; i < b->top; i++) {
629
0
            res = constant_time_select_int(constant_time_lt_bn(ap[i], bp[i]),
630
0
                                           -1, res);
631
0
            res = constant_time_select_int(constant_time_lt_bn(bp[i], ap[i]),
632
0
                                           1, res);
633
0
        }
634
0
        return res;
635
0
    }
636
637
11.6M
    bn_check_top(a);
638
11.6M
    bn_check_top(b);
639
640
11.6M
    i = a->top - b->top;
641
11.6M
    if (i != 0)
642
732k
        return i;
643
644
11.5M
    for (i = a->top - 1; i >= 0; i--) {
645
11.2M
        t1 = ap[i];
646
11.2M
        t2 = bp[i];
647
11.2M
        if (t1 != t2)
648
10.6M
            return ((t1 > t2) ? 1 : -1);
649
11.2M
    }
650
264k
    return 0;
651
10.9M
}
652
653
int BN_cmp(const BIGNUM *a, const BIGNUM *b)
654
1.04M
{
655
1.04M
    int i;
656
1.04M
    int gt, lt;
657
1.04M
    BN_ULONG t1, t2;
658
659
1.04M
    if ((a == NULL) || (b == NULL)) {
660
0
        if (a != NULL)
661
0
            return -1;
662
0
        else if (b != NULL)
663
0
            return 1;
664
0
        else
665
0
            return 0;
666
0
    }
667
668
1.04M
    bn_check_top(a);
669
1.04M
    bn_check_top(b);
670
671
1.04M
    if (a->neg != b->neg) {
672
0
        if (a->neg)
673
0
            return -1;
674
0
        else
675
0
            return 1;
676
0
    }
677
1.04M
    if (a->neg == 0) {
678
1.04M
        gt = 1;
679
1.04M
        lt = -1;
680
1.04M
    } else {
681
0
        gt = -1;
682
0
        lt = 1;
683
0
    }
684
685
1.04M
    if (a->top > b->top)
686
504k
        return gt;
687
543k
    if (a->top < b->top)
688
126
        return lt;
689
957k
    for (i = a->top - 1; i >= 0; i--) {
690
851k
        t1 = a->d[i];
691
851k
        t2 = b->d[i];
692
851k
        if (t1 > t2)
693
0
            return gt;
694
851k
        if (t1 < t2)
695
437k
            return lt;
696
851k
    }
697
105k
    return 0;
698
543k
}
699
700
int BN_set_bit(BIGNUM *a, int n)
701
298k
{
702
298k
    int i, j, k;
703
704
298k
    if (n < 0)
705
0
        return 0;
706
707
298k
    i = n / BN_BITS2;
708
298k
    j = n % BN_BITS2;
709
298k
    if (a->top <= i) {
710
298k
        if (bn_wexpand(a, i + 1) == NULL)
711
0
            return 0;
712
1.96M
        for (k = a->top; k < i + 1; k++)
713
1.66M
            a->d[k] = 0;
714
298k
        a->top = i + 1;
715
298k
        a->flags &= ~BN_FLG_FIXED_TOP;
716
298k
    }
717
718
298k
    a->d[i] |= (((BN_ULONG)1) << j);
719
298k
    bn_check_top(a);
720
298k
    return 1;
721
298k
}
722
723
int BN_clear_bit(BIGNUM *a, int n)
724
0
{
725
0
    int i, j;
726
727
0
    bn_check_top(a);
728
0
    if (n < 0)
729
0
        return 0;
730
731
0
    i = n / BN_BITS2;
732
0
    j = n % BN_BITS2;
733
0
    if (a->top <= i)
734
0
        return 0;
735
736
0
    a->d[i] &= (~(((BN_ULONG)1) << j));
737
0
    bn_correct_top(a);
738
0
    return 1;
739
0
}
740
741
int BN_is_bit_set(const BIGNUM *a, int n)
742
28.7M
{
743
28.7M
    int i, j;
744
745
28.7M
    bn_check_top(a);
746
28.7M
    if (n < 0)
747
0
        return 0;
748
28.7M
    i = n / BN_BITS2;
749
28.7M
    j = n % BN_BITS2;
750
28.7M
    if (a->top <= i)
751
1.95k
        return 0;
752
28.7M
    return (int)(((a->d[i]) >> j) & ((BN_ULONG)1));
753
28.7M
}
754
755
int ossl_bn_mask_bits_fixed_top(BIGNUM *a, int n)
756
0
{
757
0
    int b, w;
758
759
0
    if (n < 0)
760
0
        return 0;
761
762
0
    w = n / BN_BITS2;
763
0
    b = n % BN_BITS2;
764
0
    if (w >= a->top)
765
0
        return 0;
766
0
    if (b == 0)
767
0
        a->top = w;
768
0
    else {
769
0
        a->top = w + 1;
770
0
        a->d[w] &= ~(BN_MASK2 << b);
771
0
    }
772
0
    a->flags |= BN_FLG_FIXED_TOP;
773
0
    return 1;
774
0
}
775
776
int BN_mask_bits(BIGNUM *a, int n)
777
0
{
778
0
    int ret;
779
780
0
    bn_check_top(a);
781
0
    ret = ossl_bn_mask_bits_fixed_top(a, n);
782
0
    if (ret)
783
0
        bn_correct_top(a);
784
0
    return ret;
785
0
}
786
787
void BN_set_negative(BIGNUM *a, int b)
788
74.6k
{
789
74.6k
    if (b && !BN_is_zero(a))
790
3
        a->neg = 1;
791
74.6k
    else
792
74.6k
        a->neg = 0;
793
74.6k
}
794
795
int bn_cmp_words(const BN_ULONG *a, const BN_ULONG *b, int n)
796
269
{
797
269
    int i;
798
269
    BN_ULONG aa, bb;
799
800
269
    if (n == 0)
801
0
        return 0;
802
803
269
    aa = a[n - 1];
804
269
    bb = b[n - 1];
805
269
    if (aa != bb)
806
247
        return ((aa > bb) ? 1 : -1);
807
62
    for (i = n - 2; i >= 0; i--) {
808
59
        aa = a[i];
809
59
        bb = b[i];
810
59
        if (aa != bb)
811
19
            return ((aa > bb) ? 1 : -1);
812
59
    }
813
3
    return 0;
814
22
}
815
816
/*
817
 * Here follows a specialised variants of bn_cmp_words().  It has the
818
 * capability of performing the operation on arrays of different sizes. The
819
 * sizes of those arrays is expressed through cl, which is the common length
820
 * ( basically, min(len(a),len(b)) ), and dl, which is the delta between the
821
 * two lengths, calculated as len(a)-len(b). All lengths are the number of
822
 * BN_ULONGs...
823
 */
824
825
int bn_cmp_part_words(const BN_ULONG *a, const BN_ULONG *b, int cl, int dl)
826
328
{
827
328
    int n, i;
828
328
    n = cl - 1;
829
830
328
    if (dl < 0) {
831
0
        for (i = dl; i < 0; i++) {
832
0
            if (b[n - i] != 0)
833
0
                return -1;      /* a < b */
834
0
        }
835
0
    }
836
328
    if (dl > 0) {
837
105
        for (i = dl; i > 0; i--) {
838
82
            if (a[n + i] != 0)
839
59
                return 1;       /* a > b */
840
82
        }
841
82
    }
842
269
    return bn_cmp_words(a, b, cl);
843
328
}
844
845
/*-
846
 * Constant-time conditional swap of a and b.
847
 * a and b are swapped if condition is not 0.
848
 * nwords is the number of words to swap.
849
 * Assumes that at least nwords are allocated in both a and b.
850
 * Assumes that no more than nwords are used by either a or b.
851
 */
852
void BN_consttime_swap(BN_ULONG condition, BIGNUM *a, BIGNUM *b, int nwords)
853
0
{
854
0
    BN_ULONG t;
855
0
    int i;
856
857
0
    if (a == b)
858
0
        return;
859
860
0
    bn_wcheck_size(a, nwords);
861
0
    bn_wcheck_size(b, nwords);
862
863
0
    condition = ((~condition & ((condition - 1))) >> (BN_BITS2 - 1)) - 1;
864
865
0
    t = (a->top ^ b->top) & condition;
866
0
    a->top ^= t;
867
0
    b->top ^= t;
868
869
0
    t = (a->neg ^ b->neg) & condition;
870
0
    a->neg ^= t;
871
0
    b->neg ^= t;
872
873
    /*-
874
     * BN_FLG_STATIC_DATA: indicates that data may not be written to. Intention
875
     * is actually to treat it as it's read-only data, and some (if not most)
876
     * of it does reside in read-only segment. In other words observation of
877
     * BN_FLG_STATIC_DATA in BN_consttime_swap should be treated as fatal
878
     * condition. It would either cause SEGV or effectively cause data
879
     * corruption.
880
     *
881
     * BN_FLG_MALLOCED: refers to BN structure itself, and hence must be
882
     * preserved.
883
     *
884
     * BN_FLG_SECURE: must be preserved, because it determines how x->d was
885
     * allocated and hence how to free it.
886
     *
887
     * BN_FLG_CONSTTIME: sufficient to mask and swap
888
     *
889
     * BN_FLG_FIXED_TOP: indicates that we haven't called bn_correct_top() on
890
     * the data, so the d array may be padded with additional 0 values (i.e.
891
     * top could be greater than the minimal value that it could be). We should
892
     * be swapping it
893
     */
894
895
0
#define BN_CONSTTIME_SWAP_FLAGS (BN_FLG_CONSTTIME | BN_FLG_FIXED_TOP)
896
897
0
    t = ((a->flags ^ b->flags) & BN_CONSTTIME_SWAP_FLAGS) & condition;
898
0
    a->flags ^= t;
899
0
    b->flags ^= t;
900
901
    /* conditionally swap the data */
902
0
    for (i = 0; i < nwords; i++) {
903
0
        t = (a->d[i] ^ b->d[i]) & condition;
904
0
        a->d[i] ^= t;
905
0
        b->d[i] ^= t;
906
0
    }
907
0
}
908
909
#undef BN_CONSTTIME_SWAP_FLAGS
910
911
/* Bits of security, see SP800-57 */
912
913
int BN_security_bits(int L, int N)
914
8
{
915
8
    int secbits, bits;
916
8
    if (L >= 15360)
917
0
        secbits = 256;
918
8
    else if (L >= 7680)
919
0
        secbits = 192;
920
8
    else if (L >= 3072)
921
0
        secbits = 128;
922
8
    else if (L >= 2048)
923
0
        secbits = 112;
924
8
    else if (L >= 1024)
925
0
        secbits = 80;
926
8
    else
927
8
        return 0;
928
0
    if (N == -1)
929
0
        return secbits;
930
0
    bits = N / 2;
931
0
    if (bits < 80)
932
0
        return 0;
933
0
    return bits >= secbits ? secbits : bits;
934
0
}
935
936
void BN_zero_ex(BIGNUM *a)
937
7.03M
{
938
7.03M
    a->neg = 0;
939
7.03M
    a->top = 0;
940
7.03M
    a->flags &= ~BN_FLG_FIXED_TOP;
941
7.03M
}
942
943
int BN_abs_is_word(const BIGNUM *a, const BN_ULONG w)
944
595k
{
945
595k
    return ((a->top == 1) && (a->d[0] == w)) || ((w == 0) && (a->top == 0));
946
595k
}
947
948
int BN_is_zero(const BIGNUM *a)
949
23.4M
{
950
23.4M
    return a->top == 0;
951
23.4M
}
952
953
int BN_is_one(const BIGNUM *a)
954
445k
{
955
445k
    return BN_abs_is_word(a, 1) && !a->neg;
956
445k
}
957
958
int BN_is_word(const BIGNUM *a, const BN_ULONG w)
959
795
{
960
795
    return BN_abs_is_word(a, w) && (!w || !a->neg);
961
795
}
962
963
int ossl_bn_is_word_fixed_top(const BIGNUM *a, BN_ULONG w)
964
0
{
965
0
    int res, i;
966
0
    const BN_ULONG *ap = a->d;
967
968
0
    if (a->neg || a->top == 0)
969
0
        return 0;
970
971
0
    res = constant_time_select_int(constant_time_eq_bn(ap[0], w), 1, 0);
972
973
0
    for (i = 1; i < a->top; i++)
974
0
        res = constant_time_select_int(constant_time_is_zero_bn(ap[i]),
975
0
                                       res, 0);
976
0
    return res;
977
0
}
978
979
int BN_is_odd(const BIGNUM *a)
980
9.67M
{
981
9.67M
    return (a->top > 0) && (a->d[0] & 1);
982
9.67M
}
983
984
int BN_is_negative(const BIGNUM *a)
985
343k
{
986
343k
    return (a->neg != 0);
987
343k
}
988
989
int BN_to_montgomery(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont,
990
                     BN_CTX *ctx)
991
427k
{
992
427k
    return BN_mod_mul_montgomery(r, a, &(mont->RR), mont, ctx);
993
427k
}
994
995
void BN_with_flags(BIGNUM *dest, const BIGNUM *b, int flags)
996
0
{
997
0
    dest->d = b->d;
998
0
    dest->top = b->top;
999
0
    dest->dmax = b->dmax;
1000
0
    dest->neg = b->neg;
1001
0
    dest->flags = ((dest->flags & BN_FLG_MALLOCED)
1002
0
                   | (b->flags & ~BN_FLG_MALLOCED)
1003
0
                   | BN_FLG_STATIC_DATA | flags);
1004
0
}
1005
1006
BN_GENCB *BN_GENCB_new(void)
1007
0
{
1008
0
    BN_GENCB *ret;
1009
1010
0
    if ((ret = OPENSSL_malloc(sizeof(*ret))) == NULL) {
1011
0
        ERR_raise(ERR_LIB_BN, ERR_R_MALLOC_FAILURE);
1012
0
        return NULL;
1013
0
    }
1014
1015
0
    return ret;
1016
0
}
1017
1018
void BN_GENCB_free(BN_GENCB *cb)
1019
0
{
1020
0
    if (cb == NULL)
1021
0
        return;
1022
0
    OPENSSL_free(cb);
1023
0
}
1024
1025
void BN_set_flags(BIGNUM *b, int n)
1026
39.2k
{
1027
39.2k
    b->flags |= n;
1028
39.2k
}
1029
1030
int BN_get_flags(const BIGNUM *b, int n)
1031
41.6M
{
1032
41.6M
    return b->flags & n;
1033
41.6M
}
1034
1035
/* Populate a BN_GENCB structure with an "old"-style callback */
1036
void BN_GENCB_set_old(BN_GENCB *gencb, void (*callback) (int, int, void *),
1037
                      void *cb_arg)
1038
0
{
1039
0
    BN_GENCB *tmp_gencb = gencb;
1040
0
    tmp_gencb->ver = 1;
1041
0
    tmp_gencb->arg = cb_arg;
1042
0
    tmp_gencb->cb.cb_1 = callback;
1043
0
}
1044
1045
/* Populate a BN_GENCB structure with a "new"-style callback */
1046
void BN_GENCB_set(BN_GENCB *gencb, int (*callback) (int, int, BN_GENCB *),
1047
                  void *cb_arg)
1048
0
{
1049
0
    BN_GENCB *tmp_gencb = gencb;
1050
0
    tmp_gencb->ver = 2;
1051
0
    tmp_gencb->arg = cb_arg;
1052
0
    tmp_gencb->cb.cb_2 = callback;
1053
0
}
1054
1055
void *BN_GENCB_get_arg(BN_GENCB *cb)
1056
0
{
1057
0
    return cb->arg;
1058
0
}
1059
1060
BIGNUM *bn_wexpand(BIGNUM *a, int words)
1061
40.6M
{
1062
40.6M
    return (words <= a->dmax) ? a : bn_expand2(a, words);
1063
40.6M
}
1064
1065
void bn_correct_top_consttime(BIGNUM *a)
1066
0
{
1067
0
    int j, atop;
1068
0
    BN_ULONG limb;
1069
0
    unsigned int mask;
1070
1071
0
    for (j = 0, atop = 0; j < a->dmax; j++) {
1072
0
        limb = a->d[j];
1073
0
        limb |= 0 - limb;
1074
0
        limb >>= BN_BITS2 - 1;
1075
0
        limb = 0 - limb;
1076
0
        mask = (unsigned int)limb;
1077
0
        mask &= constant_time_msb(j - a->top);
1078
0
        atop = constant_time_select_int(mask, j + 1, atop);
1079
0
    }
1080
1081
0
    mask = constant_time_eq_int(atop, 0);
1082
0
    a->top = atop;
1083
0
    a->neg = constant_time_select_int(mask, 0, a->neg);
1084
0
    a->flags &= ~BN_FLG_FIXED_TOP;
1085
0
}
1086
1087
void bn_correct_top(BIGNUM *a)
1088
14.3M
{
1089
14.3M
    BN_ULONG *ftl;
1090
14.3M
    int tmp_top = a->top;
1091
1092
14.3M
    if (tmp_top > 0) {
1093
15.1M
        for (ftl = &(a->d[tmp_top]); tmp_top > 0; tmp_top--) {
1094
15.1M
            ftl--;
1095
15.1M
            if (*ftl != 0)
1096
14.2M
                break;
1097
15.1M
        }
1098
14.3M
        a->top = tmp_top;
1099
14.3M
    }
1100
14.3M
    if (a->top == 0)
1101
14.7k
        a->neg = 0;
1102
14.3M
    a->flags &= ~BN_FLG_FIXED_TOP;
1103
14.3M
    bn_pollute(a);
1104
14.3M
}