Coverage Report

Created: 2025-06-13 06:58

/src/openssl32/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.18M
{
84
1.18M
    static const BN_ULONG data_one = 1L;
85
1.18M
    static const BIGNUM const_one =
86
1.18M
        { (BN_ULONG *)&data_one, 1, 1, 0, BN_FLG_STATIC_DATA };
87
88
1.18M
    return &const_one;
89
1.18M
}
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
153M
{
102
153M
    BN_ULONG x, mask;
103
153M
    int bits = (l != 0);
104
105
153M
#if BN_BITS2 > 32
106
153M
    x = l >> 32;
107
153M
    mask = (0 - x) & BN_MASK2;
108
153M
    mask = (0 - (mask >> (BN_BITS2 - 1)));
109
153M
    bits += 32 & mask;
110
153M
    l ^= (x ^ l) & mask;
111
153M
#endif
112
113
153M
    x = l >> 16;
114
153M
    mask = (0 - x) & BN_MASK2;
115
153M
    mask = (0 - (mask >> (BN_BITS2 - 1)));
116
153M
    bits += 16 & mask;
117
153M
    l ^= (x ^ l) & mask;
118
119
153M
    x = l >> 8;
120
153M
    mask = (0 - x) & BN_MASK2;
121
153M
    mask = (0 - (mask >> (BN_BITS2 - 1)));
122
153M
    bits += 8 & mask;
123
153M
    l ^= (x ^ l) & mask;
124
125
153M
    x = l >> 4;
126
153M
    mask = (0 - x) & BN_MASK2;
127
153M
    mask = (0 - (mask >> (BN_BITS2 - 1)));
128
153M
    bits += 4 & mask;
129
153M
    l ^= (x ^ l) & mask;
130
131
153M
    x = l >> 2;
132
153M
    mask = (0 - x) & BN_MASK2;
133
153M
    mask = (0 - (mask >> (BN_BITS2 - 1)));
134
153M
    bits += 2 & mask;
135
153M
    l ^= (x ^ l) & mask;
136
137
153M
    x = l >> 1;
138
153M
    mask = (0 - x) & BN_MASK2;
139
153M
    mask = (0 - (mask >> (BN_BITS2 - 1)));
140
153M
    bits += 1 & mask;
141
142
153M
    return bits;
143
153M
}
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
7.62M
{
155
7.62M
    int j, ret;
156
7.62M
    unsigned int mask, past_i;
157
7.62M
    int i = a->top - 1;
158
7.62M
    bn_check_top(a);
159
160
46.2M
    for (j = 0, past_i = 0, ret = 0; j < a->dmax; j++) {
161
38.6M
        mask = constant_time_eq_int(i, j); /* 0xff..ff if i==j, 0x0 otherwise */
162
163
38.6M
        ret += BN_BITS2 & (~mask & ~past_i);
164
38.6M
        ret += BN_num_bits_word(a->d[j]) & mask;
165
166
38.6M
        past_i |= mask; /* past_i will become 0xff..ff after i==j */
167
38.6M
    }
168
169
    /*
170
     * if BN_is_zero(a) => i is -1 and ret contains garbage, so we mask the
171
     * final result.
172
     */
173
7.62M
    mask = ~(constant_time_eq_int(i, ((int)-1)));
174
175
7.62M
    return ret & mask;
176
7.62M
}
177
178
int BN_num_bits(const BIGNUM *a)
179
29.1M
{
180
29.1M
    int i = a->top - 1;
181
29.1M
    bn_check_top(a);
182
183
29.1M
    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
7.62M
        return bn_num_bits_consttime(a);
194
7.62M
    }
195
196
21.4M
    if (BN_is_zero(a))
197
329k
        return 0;
198
199
21.1M
    return ((i * BN_BITS2) + BN_num_bits_word(a->d[i]));
200
21.4M
}
201
202
static void bn_free_d(BIGNUM *a, int clear)
203
46.7M
{
204
46.7M
    if (BN_get_flags(a, BN_FLG_SECURE))
205
1.21M
        OPENSSL_secure_clear_free(a->d, a->dmax * sizeof(a->d[0]));
206
45.5M
    else if (clear != 0)
207
28.6M
        OPENSSL_clear_free(a->d, a->dmax * sizeof(a->d[0]));
208
16.8M
    else
209
16.8M
        OPENSSL_free(a->d);
210
46.7M
}
211
212
213
void BN_clear_free(BIGNUM *a)
214
24.9M
{
215
24.9M
    if (a == NULL)
216
4.22M
        return;
217
20.6M
    if (a->d != NULL && !BN_get_flags(a, BN_FLG_STATIC_DATA))
218
18.6M
        bn_free_d(a, 1);
219
20.6M
    if (BN_get_flags(a, BN_FLG_MALLOCED)) {
220
2.21M
        OPENSSL_cleanse(a, sizeof(*a));
221
2.21M
        OPENSSL_free(a);
222
2.21M
    }
223
20.6M
}
224
225
void BN_free(BIGNUM *a)
226
29.7M
{
227
29.7M
    if (a == NULL)
228
12.8M
        return;
229
16.9M
    if (!BN_get_flags(a, BN_FLG_STATIC_DATA))
230
16.8M
        bn_free_d(a, 0);
231
16.9M
    if (a->flags & BN_FLG_MALLOCED)
232
16.8M
        OPENSSL_free(a);
233
16.9M
}
234
235
void bn_init(BIGNUM *a)
236
43.4M
{
237
43.4M
    static BIGNUM nilbn;
238
239
43.4M
    *a = nilbn;
240
43.4M
    bn_check_top(a);
241
43.4M
}
242
243
BIGNUM *BN_new(void)
244
19.1M
{
245
19.1M
    BIGNUM *ret;
246
247
19.1M
    if ((ret = OPENSSL_zalloc(sizeof(*ret))) == NULL)
248
0
        return NULL;
249
19.1M
    ret->flags = BN_FLG_MALLOCED;
250
19.1M
    bn_check_top(ret);
251
19.1M
    return ret;
252
19.1M
}
253
254
 BIGNUM *BN_secure_new(void)
255
1.44M
 {
256
1.44M
     BIGNUM *ret = BN_new();
257
1.44M
     if (ret != NULL)
258
1.44M
         ret->flags |= BN_FLG_SECURE;
259
1.44M
     return ret;
260
1.44M
 }
261
262
/* This is used by bn_expand2() */
263
/* The caller MUST check that words > b->dmax before calling this */
264
static BN_ULONG *bn_expand_internal(const BIGNUM *b, int words)
265
45.5M
{
266
45.5M
    BN_ULONG *a = NULL;
267
268
45.5M
    if (words > (INT_MAX / (4 * BN_BITS2))) {
269
0
        ERR_raise(ERR_LIB_BN, BN_R_BIGNUM_TOO_LONG);
270
0
        return NULL;
271
0
    }
272
45.5M
    if (BN_get_flags(b, BN_FLG_STATIC_DATA)) {
273
0
        ERR_raise(ERR_LIB_BN, BN_R_EXPAND_ON_STATIC_BIGNUM_DATA);
274
0
        return NULL;
275
0
    }
276
45.5M
    if (BN_get_flags(b, BN_FLG_SECURE))
277
1.21M
        a = OPENSSL_secure_zalloc(words * sizeof(*a));
278
44.2M
    else
279
44.2M
        a = OPENSSL_zalloc(words * sizeof(*a));
280
45.5M
    if (a == NULL)
281
0
        return NULL;
282
283
45.5M
    assert(b->top <= words);
284
45.5M
    if (b->top > 0)
285
4.73M
        memcpy(a, b->d, sizeof(*a) * b->top);
286
287
45.5M
    return a;
288
45.5M
}
289
290
/*
291
 * This is an internal function that should not be used in applications. It
292
 * ensures that 'b' has enough room for a 'words' word number and initialises
293
 * any unused part of b->d with leading zeros. It is mostly used by the
294
 * various BIGNUM routines. If there is an error, NULL is returned. If not,
295
 * 'b' is returned.
296
 */
297
298
BIGNUM *bn_expand2(BIGNUM *b, int words)
299
45.5M
{
300
45.5M
    if (words > b->dmax) {
301
45.5M
        BN_ULONG *a = bn_expand_internal(b, words);
302
45.5M
        if (!a)
303
0
            return NULL;
304
45.5M
        if (b->d != NULL)
305
11.1M
            bn_free_d(b, 1);
306
45.5M
        b->d = a;
307
45.5M
        b->dmax = words;
308
45.5M
    }
309
310
45.5M
    return b;
311
45.5M
}
312
313
BIGNUM *BN_dup(const BIGNUM *a)
314
1.19M
{
315
1.19M
    BIGNUM *t;
316
317
1.19M
    if (a == NULL)
318
0
        return NULL;
319
1.19M
    bn_check_top(a);
320
321
1.19M
    t = BN_get_flags(a, BN_FLG_SECURE) ? BN_secure_new() : BN_new();
322
1.19M
    if (t == NULL)
323
0
        return NULL;
324
1.19M
    if (!BN_copy(t, a)) {
325
0
        BN_free(t);
326
0
        return NULL;
327
0
    }
328
1.19M
    bn_check_top(t);
329
1.19M
    return t;
330
1.19M
}
331
332
BIGNUM *BN_copy(BIGNUM *a, const BIGNUM *b)
333
110M
{
334
110M
    int bn_words;
335
336
110M
    bn_check_top(b);
337
338
110M
    bn_words = BN_get_flags(b, BN_FLG_CONSTTIME) ? b->dmax : b->top;
339
340
110M
    if (a == b)
341
3
        return a;
342
110M
    if (bn_wexpand(a, bn_words) == NULL)
343
0
        return NULL;
344
345
110M
    if (b->top > 0)
346
109M
        memcpy(a->d, b->d, sizeof(b->d[0]) * bn_words);
347
348
110M
    a->neg = b->neg;
349
110M
    a->top = b->top;
350
110M
    a->flags |= b->flags & BN_FLG_FIXED_TOP;
351
110M
    bn_check_top(a);
352
110M
    return a;
353
110M
}
354
355
0
#define FLAGS_DATA(flags) ((flags) & (BN_FLG_STATIC_DATA \
356
0
                                    | BN_FLG_CONSTTIME   \
357
0
                                    | BN_FLG_SECURE      \
358
0
                                    | BN_FLG_FIXED_TOP))
359
0
#define FLAGS_STRUCT(flags) ((flags) & (BN_FLG_MALLOCED))
360
361
void BN_swap(BIGNUM *a, BIGNUM *b)
362
0
{
363
0
    int flags_old_a, flags_old_b;
364
0
    BN_ULONG *tmp_d;
365
0
    int tmp_top, tmp_dmax, tmp_neg;
366
367
0
    bn_check_top(a);
368
0
    bn_check_top(b);
369
370
0
    flags_old_a = a->flags;
371
0
    flags_old_b = b->flags;
372
373
0
    tmp_d = a->d;
374
0
    tmp_top = a->top;
375
0
    tmp_dmax = a->dmax;
376
0
    tmp_neg = a->neg;
377
378
0
    a->d = b->d;
379
0
    a->top = b->top;
380
0
    a->dmax = b->dmax;
381
0
    a->neg = b->neg;
382
383
0
    b->d = tmp_d;
384
0
    b->top = tmp_top;
385
0
    b->dmax = tmp_dmax;
386
0
    b->neg = tmp_neg;
387
388
0
    a->flags = FLAGS_STRUCT(flags_old_a) | FLAGS_DATA(flags_old_b);
389
0
    b->flags = FLAGS_STRUCT(flags_old_b) | FLAGS_DATA(flags_old_a);
390
0
    bn_check_top(a);
391
0
    bn_check_top(b);
392
0
}
393
394
void BN_clear(BIGNUM *a)
395
310k
{
396
310k
    if (a == NULL)
397
0
        return;
398
310k
    bn_check_top(a);
399
310k
    if (a->d != NULL)
400
20.4k
        OPENSSL_cleanse(a->d, sizeof(*a->d) * a->dmax);
401
310k
    a->neg = 0;
402
310k
    a->top = 0;
403
310k
    a->flags &= ~BN_FLG_FIXED_TOP;
404
310k
}
405
406
BN_ULONG BN_get_word(const BIGNUM *a)
407
233
{
408
233
    if (a->top > 1)
409
8
        return BN_MASK2;
410
225
    else if (a->top == 1)
411
189
        return a->d[0];
412
    /* a->top == 0 */
413
36
    return 0;
414
233
}
415
416
int BN_set_word(BIGNUM *a, BN_ULONG w)
417
2.02M
{
418
2.02M
    bn_check_top(a);
419
2.02M
    if (bn_expand(a, (int)sizeof(BN_ULONG) * 8) == NULL)
420
0
        return 0;
421
2.02M
    a->neg = 0;
422
2.02M
    a->d[0] = w;
423
2.02M
    a->top = (w ? 1 : 0);
424
2.02M
    a->flags &= ~BN_FLG_FIXED_TOP;
425
2.02M
    bn_check_top(a);
426
2.02M
    return 1;
427
2.02M
}
428
429
typedef enum {BIG, LITTLE} endianness_t;
430
typedef enum {SIGNED, UNSIGNED} signedness_t;
431
432
static BIGNUM *bin2bn(const unsigned char *s, int len, BIGNUM *ret,
433
                      endianness_t endianness, signedness_t signedness)
434
4.07M
{
435
4.07M
    int inc;
436
4.07M
    const unsigned char *s2;
437
4.07M
    int inc2;
438
4.07M
    int neg = 0, xor = 0, carry = 0;
439
4.07M
    unsigned int i;
440
4.07M
    unsigned int n;
441
4.07M
    BIGNUM *bn = NULL;
442
443
    /* Negative length is not acceptable */
444
4.07M
    if (len < 0)
445
0
        return NULL;
446
447
4.07M
    if (ret == NULL)
448
1.98M
        ret = bn = BN_new();
449
4.07M
    if (ret == NULL)
450
0
        return NULL;
451
4.07M
    bn_check_top(ret);
452
453
    /*
454
     * If the input has no bits, the number is considered zero.
455
     * This makes calls with s==NULL and len==0 safe.
456
     */
457
4.07M
    if (len == 0) {
458
288k
        BN_clear(ret);
459
288k
        return ret;
460
288k
    }
461
462
    /*
463
     * The loop that does the work iterates from least to most
464
     * significant BIGNUM chunk, so we adapt parameters to transfer
465
     * input bytes accordingly.
466
     */
467
3.78M
    if (endianness == LITTLE) {
468
381k
        s2 = s + len - 1;
469
381k
        inc2 = -1;
470
381k
        inc = 1;
471
3.40M
    } else {
472
3.40M
        s2 = s;
473
3.40M
        inc2 = 1;
474
3.40M
        inc = -1;
475
3.40M
        s += len - 1;
476
3.40M
    }
477
478
    /* Take note of the signedness of the input bytes*/
479
3.78M
    if (signedness == SIGNED) {
480
0
        neg = !!(*s2 & 0x80);
481
0
        xor = neg ? 0xff : 0x00;
482
0
        carry = neg;
483
0
    }
484
485
    /*
486
     * Skip leading sign extensions (the value of |xor|).
487
     * This is the only spot where |s2| and |inc2| are used.
488
     */
489
9.05M
    for ( ; len > 0 && *s2 == xor; s2 += inc2, len--)
490
5.27M
        continue;
491
492
    /*
493
     * If there was a set of 0xff, we backtrack one byte unless the next
494
     * one has a sign bit, as the last 0xff is then part of the actual
495
     * number, rather then a mere sign extension.
496
     */
497
3.78M
    if (xor == 0xff) {
498
0
        if (len == 0 || !(*s2 & 0x80))
499
0
            len++;
500
0
    }
501
    /* If it was all zeros, we're done */
502
3.78M
    if (len == 0) {
503
91.3k
        ret->top = 0;
504
91.3k
        return ret;
505
91.3k
    }
506
3.69M
    n = ((len - 1) / BN_BYTES) + 1; /* Number of resulting bignum chunks */
507
3.69M
    if (bn_wexpand(ret, (int)n) == NULL) {
508
0
        BN_free(bn);
509
0
        return NULL;
510
0
    }
511
3.69M
    ret->top = n;
512
3.69M
    ret->neg = neg;
513
45.8M
    for (i = 0; n-- > 0; i++) {
514
42.1M
        BN_ULONG l = 0;        /* Accumulator */
515
42.1M
        unsigned int m = 0;    /* Offset in a bignum chunk, in bits */
516
517
368M
        for (; len > 0 && m < BN_BYTES * 8; len--, s += inc, m += 8) {
518
326M
            BN_ULONG byte_xored = *s ^ xor;
519
326M
            BN_ULONG byte = (byte_xored + carry) & 0xff;
520
521
326M
            carry = byte_xored > byte; /* Implicit 1 or 0 */
522
326M
            l |= (byte << m);
523
326M
        }
524
42.1M
        ret->d[i] = l;
525
42.1M
    }
526
    /*
527
     * need to call this due to clear byte at top if avoiding having the top
528
     * bit set (-ve number)
529
     */
530
3.69M
    bn_correct_top(ret);
531
3.69M
    return ret;
532
3.69M
}
533
534
BIGNUM *BN_bin2bn(const unsigned char *s, int len, BIGNUM *ret)
535
3.69M
{
536
3.69M
    return bin2bn(s, len, ret, BIG, UNSIGNED);
537
3.69M
}
538
539
BIGNUM *BN_signed_bin2bn(const unsigned char *s, int len, BIGNUM *ret)
540
0
{
541
0
    return bin2bn(s, len, ret, BIG, SIGNED);
542
0
}
543
544
static int bn2binpad(const BIGNUM *a, unsigned char *to, int tolen,
545
                     endianness_t endianness, signedness_t signedness)
546
814k
{
547
814k
    int inc;
548
814k
    int n, n8;
549
814k
    int xor = 0, carry = 0, ext = 0;
550
814k
    size_t i, lasti, j, atop, mask;
551
814k
    BN_ULONG l;
552
553
    /*
554
     * In case |a| is fixed-top, BN_num_bits can return bogus length,
555
     * but it's assumed that fixed-top inputs ought to be "nominated"
556
     * even for padded output, so it works out...
557
     */
558
814k
    n8 = BN_num_bits(a);
559
814k
    n = (n8 + 7) / 8;           /* This is what BN_num_bytes() does */
560
561
    /* Take note of the signedness of the bignum */
562
814k
    if (signedness == SIGNED) {
563
0
        xor = a->neg ? 0xff : 0x00;
564
0
        carry = a->neg;
565
566
        /*
567
         * if |n * 8 == n|, then the MSbit is set, otherwise unset.
568
         * We must compensate with one extra byte if that doesn't
569
         * correspond to the signedness of the bignum with regards
570
         * to 2's complement.
571
         */
572
0
        ext = (n * 8 == n8)
573
0
            ? !a->neg            /* MSbit set on nonnegative bignum */
574
0
            : a->neg;            /* MSbit unset on negative bignum */
575
0
    }
576
577
814k
    if (tolen == -1) {
578
370k
        tolen = n + ext;
579
443k
    } else if (tolen < n + ext) { /* uncommon/unlike case */
580
2.39k
        BIGNUM temp = *a;
581
582
2.39k
        bn_correct_top(&temp);
583
2.39k
        n8 = BN_num_bits(&temp);
584
2.39k
        n = (n8 + 7) / 8;       /* This is what BN_num_bytes() does */
585
2.39k
        if (tolen < n + ext)
586
2.39k
            return -1;
587
2.39k
    }
588
589
    /* Swipe through whole available data and don't give away padded zero. */
590
811k
    atop = a->dmax * BN_BYTES;
591
811k
    if (atop == 0) {
592
131k
        if (tolen != 0)
593
2.18k
            memset(to, '\0', tolen);
594
131k
        return tolen;
595
131k
    }
596
597
    /*
598
     * The loop that does the work iterates from least significant
599
     * to most significant BIGNUM limb, so we adapt parameters to
600
     * transfer output bytes accordingly.
601
     */
602
680k
    if (endianness == LITTLE) {
603
371k
        inc = 1;
604
371k
    } else {
605
309k
        inc = -1;
606
309k
        to += tolen - 1;         /* Move to the last byte, not beyond */
607
309k
    }
608
609
680k
    lasti = atop - 1;
610
680k
    atop = a->top * BN_BYTES;
611
70.8M
    for (i = 0, j = 0; j < (size_t)tolen; j++) {
612
70.1M
        unsigned char byte, byte_xored;
613
614
70.1M
        l = a->d[i / BN_BYTES];
615
70.1M
        mask = 0 - ((j - atop) >> (8 * sizeof(i) - 1));
616
70.1M
        byte = (unsigned char)(l >> (8 * (i % BN_BYTES)) & mask);
617
70.1M
        byte_xored = byte ^ xor;
618
70.1M
        *to = (unsigned char)(byte_xored + carry);
619
70.1M
        carry = byte_xored > *to; /* Implicit 1 or 0 */
620
70.1M
        to += inc;
621
70.1M
        i += (i - lasti) >> (8 * sizeof(i) - 1); /* stay on last limb */
622
70.1M
    }
623
624
680k
    return tolen;
625
811k
}
626
627
int BN_bn2binpad(const BIGNUM *a, unsigned char *to, int tolen)
628
159k
{
629
159k
    if (tolen < 0)
630
0
        return -1;
631
159k
    return bn2binpad(a, to, tolen, BIG, UNSIGNED);
632
159k
}
633
634
int BN_signed_bn2bin(const BIGNUM *a, unsigned char *to, int tolen)
635
0
{
636
0
    if (tolen < 0)
637
0
        return -1;
638
0
    return bn2binpad(a, to, tolen, BIG, SIGNED);
639
0
}
640
641
int BN_bn2bin(const BIGNUM *a, unsigned char *to)
642
661k
{
643
661k
    return bn2binpad(a, to, -1, BIG, UNSIGNED);
644
661k
}
645
646
BIGNUM *BN_lebin2bn(const unsigned char *s, int len, BIGNUM *ret)
647
381k
{
648
381k
    return bin2bn(s, len, ret, LITTLE, UNSIGNED);
649
381k
}
650
651
BIGNUM *BN_signed_lebin2bn(const unsigned char *s, int len, BIGNUM *ret)
652
0
{
653
0
    return bin2bn(s, len, ret, LITTLE, SIGNED);
654
0
}
655
656
int BN_bn2lebinpad(const BIGNUM *a, unsigned char *to, int tolen)
657
585k
{
658
585k
    if (tolen < 0)
659
0
        return -1;
660
585k
    return bn2binpad(a, to, tolen, LITTLE, UNSIGNED);
661
585k
}
662
663
int BN_signed_bn2lebin(const BIGNUM *a, unsigned char *to, int tolen)
664
0
{
665
0
    if (tolen < 0)
666
0
        return -1;
667
0
    return bn2binpad(a, to, tolen, LITTLE, SIGNED);
668
0
}
669
670
BIGNUM *BN_native2bn(const unsigned char *s, int len, BIGNUM *ret)
671
561k
{
672
561k
    DECLARE_IS_ENDIAN;
673
674
561k
    if (IS_LITTLE_ENDIAN)
675
561k
        return BN_lebin2bn(s, len, ret);
676
0
    return BN_bin2bn(s, len, ret);
677
561k
}
678
679
BIGNUM *BN_signed_native2bn(const unsigned char *s, int len, BIGNUM *ret)
680
0
{
681
0
    DECLARE_IS_ENDIAN;
682
683
0
    if (IS_LITTLE_ENDIAN)
684
0
        return BN_signed_lebin2bn(s, len, ret);
685
0
    return BN_signed_bin2bn(s, len, ret);
686
0
}
687
688
int BN_bn2nativepad(const BIGNUM *a, unsigned char *to, int tolen)
689
561k
{
690
561k
    DECLARE_IS_ENDIAN;
691
692
561k
    if (IS_LITTLE_ENDIAN)
693
561k
        return BN_bn2lebinpad(a, to, tolen);
694
0
    return BN_bn2binpad(a, to, tolen);
695
561k
}
696
697
int BN_signed_bn2native(const BIGNUM *a, unsigned char *to, int tolen)
698
0
{
699
0
    DECLARE_IS_ENDIAN;
700
701
0
    if (IS_LITTLE_ENDIAN)
702
0
        return BN_signed_bn2lebin(a, to, tolen);
703
0
    return BN_signed_bn2bin(a, to, tolen);
704
0
}
705
706
int BN_ucmp(const BIGNUM *a, const BIGNUM *b)
707
84.1M
{
708
84.1M
    int i;
709
84.1M
    BN_ULONG t1, t2, *ap, *bp;
710
711
84.1M
    ap = a->d;
712
84.1M
    bp = b->d;
713
714
84.1M
    if (BN_get_flags(a, BN_FLG_CONSTTIME)
715
84.1M
            && a->top == b->top) {
716
1.70M
        int res = 0;
717
718
9.46M
        for (i = 0; i < b->top; i++) {
719
7.76M
            res = constant_time_select_int(constant_time_lt_bn(ap[i], bp[i]),
720
7.76M
                                           -1, res);
721
7.76M
            res = constant_time_select_int(constant_time_lt_bn(bp[i], ap[i]),
722
7.76M
                                           1, res);
723
7.76M
        }
724
1.70M
        return res;
725
1.70M
    }
726
727
82.4M
    bn_check_top(a);
728
82.4M
    bn_check_top(b);
729
730
82.4M
    i = a->top - b->top;
731
82.4M
    if (i != 0)
732
8.66M
        return i;
733
734
77.7M
    for (i = a->top - 1; i >= 0; i--) {
735
76.3M
        t1 = ap[i];
736
76.3M
        t2 = bp[i];
737
76.3M
        if (t1 != t2)
738
72.5M
            return ((t1 > t2) ? 1 : -1);
739
76.3M
    }
740
1.32M
    return 0;
741
73.8M
}
742
743
int BN_cmp(const BIGNUM *a, const BIGNUM *b)
744
12.9M
{
745
12.9M
    int i;
746
12.9M
    int gt, lt;
747
12.9M
    BN_ULONG t1, t2;
748
749
12.9M
    if ((a == NULL) || (b == NULL)) {
750
0
        if (a != NULL)
751
0
            return -1;
752
0
        else if (b != NULL)
753
0
            return 1;
754
0
        else
755
0
            return 0;
756
0
    }
757
758
12.9M
    bn_check_top(a);
759
12.9M
    bn_check_top(b);
760
761
12.9M
    if (a->neg != b->neg) {
762
931
        if (a->neg)
763
348
            return -1;
764
583
        else
765
583
            return 1;
766
931
    }
767
12.9M
    if (a->neg == 0) {
768
12.9M
        gt = 1;
769
12.9M
        lt = -1;
770
12.9M
    } else {
771
6.25k
        gt = -1;
772
6.25k
        lt = 1;
773
6.25k
    }
774
775
12.9M
    if (a->top > b->top)
776
3.07M
        return gt;
777
9.89M
    if (a->top < b->top)
778
1.03M
        return lt;
779
24.5M
    for (i = a->top - 1; i >= 0; i--) {
780
23.2M
        t1 = a->d[i];
781
23.2M
        t2 = b->d[i];
782
23.2M
        if (t1 > t2)
783
2.67M
            return gt;
784
20.5M
        if (t1 < t2)
785
4.94M
            return lt;
786
20.5M
    }
787
1.23M
    return 0;
788
8.85M
}
789
790
int BN_set_bit(BIGNUM *a, int n)
791
1.68M
{
792
1.68M
    int i, j, k;
793
794
1.68M
    if (n < 0)
795
0
        return 0;
796
797
1.68M
    i = n / BN_BITS2;
798
1.68M
    j = n % BN_BITS2;
799
1.68M
    if (a->top <= i) {
800
1.68M
        if (bn_wexpand(a, i + 1) == NULL)
801
0
            return 0;
802
13.3M
        for (k = a->top; k < i + 1; k++)
803
11.6M
            a->d[k] = 0;
804
1.68M
        a->top = i + 1;
805
1.68M
        a->flags &= ~BN_FLG_FIXED_TOP;
806
1.68M
    }
807
808
1.68M
    a->d[i] |= (((BN_ULONG)1) << j);
809
1.68M
    bn_check_top(a);
810
1.68M
    return 1;
811
1.68M
}
812
813
int BN_clear_bit(BIGNUM *a, int n)
814
569
{
815
569
    int i, j;
816
817
569
    bn_check_top(a);
818
569
    if (n < 0)
819
0
        return 0;
820
821
569
    i = n / BN_BITS2;
822
569
    j = n % BN_BITS2;
823
569
    if (a->top <= i)
824
0
        return 0;
825
826
569
    a->d[i] &= (~(((BN_ULONG)1) << j));
827
569
    bn_correct_top(a);
828
569
    return 1;
829
569
}
830
831
int BN_is_bit_set(const BIGNUM *a, int n)
832
191M
{
833
191M
    int i, j;
834
835
191M
    bn_check_top(a);
836
191M
    if (n < 0)
837
2.48k
        return 0;
838
191M
    i = n / BN_BITS2;
839
191M
    j = n % BN_BITS2;
840
191M
    if (a->top <= i)
841
10.7k
        return 0;
842
191M
    return (int)(((a->d[i]) >> j) & ((BN_ULONG)1));
843
191M
}
844
845
int ossl_bn_mask_bits_fixed_top(BIGNUM *a, int n)
846
2.93k
{
847
2.93k
    int b, w;
848
849
2.93k
    if (n < 0)
850
0
        return 0;
851
852
2.93k
    w = n / BN_BITS2;
853
2.93k
    b = n % BN_BITS2;
854
2.93k
    if (w >= a->top)
855
0
        return 0;
856
2.93k
    if (b == 0)
857
2.93k
        a->top = w;
858
0
    else {
859
0
        a->top = w + 1;
860
0
        a->d[w] &= ~(BN_MASK2 << b);
861
0
    }
862
2.93k
    a->flags |= BN_FLG_FIXED_TOP;
863
2.93k
    return 1;
864
2.93k
}
865
866
int BN_mask_bits(BIGNUM *a, int n)
867
0
{
868
0
    int ret;
869
870
0
    bn_check_top(a);
871
0
    ret = ossl_bn_mask_bits_fixed_top(a, n);
872
0
    if (ret)
873
0
        bn_correct_top(a);
874
0
    return ret;
875
0
}
876
877
void BN_set_negative(BIGNUM *a, int b)
878
1.31M
{
879
1.31M
    if (b && !BN_is_zero(a))
880
145k
        a->neg = 1;
881
1.17M
    else
882
1.17M
        a->neg = 0;
883
1.31M
}
884
885
int bn_cmp_words(const BN_ULONG *a, const BN_ULONG *b, int n)
886
55.0M
{
887
55.0M
    int i;
888
55.0M
    BN_ULONG aa, bb;
889
890
55.0M
    if (n == 0)
891
0
        return 0;
892
893
55.0M
    aa = a[n - 1];
894
55.0M
    bb = b[n - 1];
895
55.0M
    if (aa != bb)
896
49.2M
        return ((aa > bb) ? 1 : -1);
897
49.7M
    for (i = n - 2; i >= 0; i--) {
898
47.3M
        aa = a[i];
899
47.3M
        bb = b[i];
900
47.3M
        if (aa != bb)
901
3.46M
            return ((aa > bb) ? 1 : -1);
902
47.3M
    }
903
2.33M
    return 0;
904
5.80M
}
905
906
/*
907
 * Here follows a specialised variants of bn_cmp_words().  It has the
908
 * capability of performing the operation on arrays of different sizes. The
909
 * sizes of those arrays is expressed through cl, which is the common length
910
 * ( basically, min(len(a),len(b)) ), and dl, which is the delta between the
911
 * two lengths, calculated as len(a)-len(b). All lengths are the number of
912
 * BN_ULONGs...
913
 */
914
915
int bn_cmp_part_words(const BN_ULONG *a, const BN_ULONG *b, int cl, int dl)
916
52.3M
{
917
52.3M
    int n, i;
918
52.3M
    n = cl - 1;
919
920
52.3M
    if (dl < 0) {
921
897k
        for (i = dl; i < 0; i++) {
922
862k
            if (b[n - i] != 0)
923
376k
                return -1;      /* a < b */
924
862k
        }
925
411k
    }
926
51.9M
    if (dl > 0) {
927
1.31M
        for (i = dl; i > 0; i--) {
928
1.24M
            if (a[n + i] != 0)
929
347k
                return 1;       /* a > b */
930
1.24M
        }
931
415k
    }
932
51.6M
    return bn_cmp_words(a, b, cl);
933
51.9M
}
934
935
/*-
936
 * Constant-time conditional swap of a and b.
937
 * a and b are swapped if condition is not 0.
938
 * nwords is the number of words to swap.
939
 * Assumes that at least nwords are allocated in both a and b.
940
 * Assumes that no more than nwords are used by either a or b.
941
 */
942
void BN_consttime_swap(BN_ULONG condition, BIGNUM *a, BIGNUM *b, int nwords)
943
46.7M
{
944
46.7M
    BN_ULONG t;
945
46.7M
    int i;
946
947
46.7M
    bn_wcheck_size(a, nwords);
948
46.7M
    bn_wcheck_size(b, nwords);
949
950
46.7M
    condition = ((~condition & ((condition - 1))) >> (BN_BITS2 - 1)) - 1;
951
952
46.7M
    t = (a->top ^ b->top) & condition;
953
46.7M
    a->top ^= t;
954
46.7M
    b->top ^= t;
955
956
46.7M
    t = (a->neg ^ b->neg) & condition;
957
46.7M
    a->neg ^= t;
958
46.7M
    b->neg ^= t;
959
960
    /*-
961
     * BN_FLG_STATIC_DATA: indicates that data may not be written to. Intention
962
     * is actually to treat it as it's read-only data, and some (if not most)
963
     * of it does reside in read-only segment. In other words observation of
964
     * BN_FLG_STATIC_DATA in BN_consttime_swap should be treated as fatal
965
     * condition. It would either cause SEGV or effectively cause data
966
     * corruption.
967
     *
968
     * BN_FLG_MALLOCED: refers to BN structure itself, and hence must be
969
     * preserved.
970
     *
971
     * BN_FLG_SECURE: must be preserved, because it determines how x->d was
972
     * allocated and hence how to free it.
973
     *
974
     * BN_FLG_CONSTTIME: sufficient to mask and swap
975
     *
976
     * BN_FLG_FIXED_TOP: indicates that we haven't called bn_correct_top() on
977
     * the data, so the d array may be padded with additional 0 values (i.e.
978
     * top could be greater than the minimal value that it could be). We should
979
     * be swapping it
980
     */
981
982
46.7M
#define BN_CONSTTIME_SWAP_FLAGS (BN_FLG_CONSTTIME | BN_FLG_FIXED_TOP)
983
984
46.7M
    t = ((a->flags ^ b->flags) & BN_CONSTTIME_SWAP_FLAGS) & condition;
985
46.7M
    a->flags ^= t;
986
46.7M
    b->flags ^= t;
987
988
    /* conditionally swap the data */
989
6.80G
    for (i = 0; i < nwords; i++) {
990
6.75G
        t = (a->d[i] ^ b->d[i]) & condition;
991
6.75G
        a->d[i] ^= t;
992
6.75G
        b->d[i] ^= t;
993
6.75G
    }
994
46.7M
}
995
996
#undef BN_CONSTTIME_SWAP_FLAGS
997
998
/* Bits of security, see SP800-57 */
999
1000
int BN_security_bits(int L, int N)
1001
115k
{
1002
115k
    int secbits, bits;
1003
115k
    if (L >= 15360)
1004
458
        secbits = 256;
1005
114k
    else if (L >= 7680)
1006
868
        secbits = 192;
1007
113k
    else if (L >= 3072)
1008
2.09k
        secbits = 128;
1009
111k
    else if (L >= 2048)
1010
1.98k
        secbits = 112;
1011
109k
    else if (L >= 1024)
1012
63.4k
        secbits = 80;
1013
46.1k
    else
1014
46.1k
        return 0;
1015
68.8k
    if (N == -1)
1016
7.78k
        return secbits;
1017
61.1k
    bits = N / 2;
1018
61.1k
    if (bits < 80)
1019
4.59k
        return 0;
1020
56.5k
    return bits >= secbits ? secbits : bits;
1021
61.1k
}
1022
1023
void BN_zero_ex(BIGNUM *a)
1024
813M
{
1025
813M
    a->neg = 0;
1026
813M
    a->top = 0;
1027
813M
    a->flags &= ~BN_FLG_FIXED_TOP;
1028
813M
}
1029
1030
int BN_abs_is_word(const BIGNUM *a, const BN_ULONG w)
1031
65.6M
{
1032
65.6M
    return ((a->top == 1) && (a->d[0] == w)) || ((w == 0) && (a->top == 0));
1033
65.6M
}
1034
1035
int BN_is_zero(const BIGNUM *a)
1036
246M
{
1037
246M
    return a->top == 0;
1038
246M
}
1039
1040
int BN_is_one(const BIGNUM *a)
1041
64.5M
{
1042
64.5M
    return BN_abs_is_word(a, 1) && !a->neg;
1043
64.5M
}
1044
1045
int BN_is_word(const BIGNUM *a, const BN_ULONG w)
1046
231k
{
1047
231k
    return BN_abs_is_word(a, w) && (!w || !a->neg);
1048
231k
}
1049
1050
int ossl_bn_is_word_fixed_top(const BIGNUM *a, const BN_ULONG w)
1051
2.93k
{
1052
2.93k
    int res, i;
1053
2.93k
    const BN_ULONG *ap = a->d;
1054
1055
2.93k
    if (a->neg || a->top == 0)
1056
0
        return 0;
1057
1058
2.93k
    res = constant_time_select_int(constant_time_eq_bn(ap[0], w), 1, 0);
1059
1060
11.7k
    for (i = 1; i < a->top; i++)
1061
8.79k
        res = constant_time_select_int(constant_time_is_zero_bn(ap[i]),
1062
8.79k
                                       res, 0);
1063
2.93k
    return res;
1064
2.93k
}
1065
1066
int BN_is_odd(const BIGNUM *a)
1067
48.4M
{
1068
48.4M
    return (a->top > 0) && (a->d[0] & 1);
1069
48.4M
}
1070
1071
int BN_is_negative(const BIGNUM *a)
1072
4.53M
{
1073
4.53M
    return (a->neg != 0);
1074
4.53M
}
1075
1076
int BN_to_montgomery(BIGNUM *r, const BIGNUM *a, BN_MONT_CTX *mont,
1077
                     BN_CTX *ctx)
1078
1.55M
{
1079
1.55M
    return BN_mod_mul_montgomery(r, a, &(mont->RR), mont, ctx);
1080
1.55M
}
1081
1082
void BN_with_flags(BIGNUM *dest, const BIGNUM *b, int flags)
1083
10.9M
{
1084
10.9M
    dest->d = b->d;
1085
10.9M
    dest->top = b->top;
1086
10.9M
    dest->dmax = b->dmax;
1087
10.9M
    dest->neg = b->neg;
1088
10.9M
    dest->flags = ((dest->flags & BN_FLG_MALLOCED)
1089
10.9M
                   | (b->flags & ~BN_FLG_MALLOCED)
1090
10.9M
                   | BN_FLG_STATIC_DATA | flags);
1091
10.9M
}
1092
1093
BN_GENCB *BN_GENCB_new(void)
1094
3.76k
{
1095
3.76k
    BN_GENCB *ret;
1096
1097
3.76k
    if ((ret = OPENSSL_malloc(sizeof(*ret))) == NULL)
1098
0
        return NULL;
1099
1100
3.76k
    return ret;
1101
3.76k
}
1102
1103
void BN_GENCB_free(BN_GENCB *cb)
1104
5.08k
{
1105
5.08k
    if (cb == NULL)
1106
1.31k
        return;
1107
3.76k
    OPENSSL_free(cb);
1108
3.76k
}
1109
1110
void BN_set_flags(BIGNUM *b, int n)
1111
1.50M
{
1112
1.50M
    b->flags |= n;
1113
1.50M
}
1114
1115
int BN_get_flags(const BIGNUM *b, int n)
1116
394M
{
1117
394M
    return b->flags & n;
1118
394M
}
1119
1120
/* Populate a BN_GENCB structure with an "old"-style callback */
1121
void BN_GENCB_set_old(BN_GENCB *gencb, void (*callback) (int, int, void *),
1122
                      void *cb_arg)
1123
0
{
1124
0
    BN_GENCB *tmp_gencb = gencb;
1125
0
    tmp_gencb->ver = 1;
1126
0
    tmp_gencb->arg = cb_arg;
1127
0
    tmp_gencb->cb.cb_1 = callback;
1128
0
}
1129
1130
/* Populate a BN_GENCB structure with a "new"-style callback */
1131
void BN_GENCB_set(BN_GENCB *gencb, int (*callback) (int, int, BN_GENCB *),
1132
                  void *cb_arg)
1133
3.76k
{
1134
3.76k
    BN_GENCB *tmp_gencb = gencb;
1135
3.76k
    tmp_gencb->ver = 2;
1136
3.76k
    tmp_gencb->arg = cb_arg;
1137
3.76k
    tmp_gencb->cb.cb_2 = callback;
1138
3.76k
}
1139
1140
void *BN_GENCB_get_arg(BN_GENCB *cb)
1141
0
{
1142
0
    return cb->arg;
1143
0
}
1144
1145
BIGNUM *bn_wexpand(BIGNUM *a, int words)
1146
1.63G
{
1147
1.63G
    return (words <= a->dmax) ? a : bn_expand2(a, words);
1148
1.63G
}
1149
1150
void bn_correct_top_consttime(BIGNUM *a)
1151
8.87k
{
1152
8.87k
    int j, atop;
1153
8.87k
    BN_ULONG limb;
1154
8.87k
    unsigned int mask;
1155
1156
577k
    for (j = 0, atop = 0; j < a->dmax; j++) {
1157
568k
        limb = a->d[j];
1158
568k
        limb |= 0 - limb;
1159
568k
        limb >>= BN_BITS2 - 1;
1160
568k
        limb = 0 - limb;
1161
568k
        mask = (unsigned int)limb;
1162
568k
        mask &= constant_time_msb(j - a->top);
1163
568k
        atop = constant_time_select_int(mask, j + 1, atop);
1164
568k
    }
1165
1166
8.87k
    mask = constant_time_eq_int(atop, 0);
1167
8.87k
    a->top = atop;
1168
8.87k
    a->neg = constant_time_select_int(mask, 0, a->neg);
1169
8.87k
    a->flags &= ~BN_FLG_FIXED_TOP;
1170
8.87k
}
1171
1172
void bn_correct_top(BIGNUM *a)
1173
1.08G
{
1174
1.08G
    BN_ULONG *ftl;
1175
1.08G
    int tmp_top = a->top;
1176
1177
1.08G
    if (tmp_top > 0) {
1178
3.25G
        for (ftl = &(a->d[tmp_top]); tmp_top > 0; tmp_top--) {
1179
3.24G
            ftl--;
1180
3.24G
            if (*ftl != 0)
1181
1.07G
                break;
1182
3.24G
        }
1183
1.07G
        a->top = tmp_top;
1184
1.07G
    }
1185
1.08G
    if (a->top == 0)
1186
3.07M
        a->neg = 0;
1187
1.08G
    a->flags &= ~BN_FLG_FIXED_TOP;
1188
1.08G
    bn_pollute(a);
1189
1.08G
}