Coverage Report

Created: 2026-08-15 06:21

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/cryptofuzz-sp-math-all/modules/wolfcrypt/bn_helper.cpp
Line
Count
Source
1
#include "bn_ops.h"
2
#include <iostream>
3
4
namespace cryptofuzz {
5
namespace module {
6
7
namespace wolfCrypt_detail {
8
#if defined(CRYPTOFUZZ_WOLFCRYPT_ALLOCATION_FAILURES)
9
    extern bool disableAllocationFailures;
10
    extern bool haveAllocFailure;
11
#endif
12
} /* namespace wolfCrypt_detail */
13
14
namespace wolfCrypt_bignum {
15
16
167k
Bignum::read_radix_error_t Bignum::read_radix(mp_int* dest, const std::string& str, const size_t base) {
17
167k
    return read_radix(dest, str.c_str(), base);
18
167k
}
19
20
167k
Bignum::read_radix_error_t Bignum::read_radix(mp_int* dest, const char* str, const size_t base) {
21
167k
    Bignum::read_radix_error_t ret;
22
23
    /* Create a temporary variable for storing the result of mp_read_radix,
24
     * because if mp_read_radix fails (e.g. due to allocation failure),
25
     * it will set the value of the destination variable to 0.
26
     *
27
     * See OSS-Fuzz 31709 / ZD 11834 for discussion. */
28
167k
    auto newMp = (mp_int*)util::malloc(sizeof(mp_int));
29
167k
    if ( mp_init(newMp) != MP_OKAY ) {
30
0
        util::free(newMp);
31
0
        return READ_RADIX_FAIL_MEMORY;
32
0
    }
33
34
167k
    wolfCrypt_detail::haveAllocFailure = false;
35
167k
    if ( mp_read_radix(newMp, str, base) != MP_OKAY ) {
36
1.58k
        ret = wolfCrypt_detail::haveAllocFailure ? READ_RADIX_FAIL_MEMORY : READ_RADIX_FAIL_OTHER;
37
1.58k
        goto end;
38
1.58k
    }
39
40
165k
    wolfCrypt_detail::haveAllocFailure = false;
41
165k
    if ( mp_copy(newMp, dest) != MP_OKAY ) {
42
994
        ret = wolfCrypt_detail::haveAllocFailure ? READ_RADIX_FAIL_MEMORY : READ_RADIX_FAIL_OTHER;
43
994
        goto end;
44
994
    }
45
46
164k
    ret = READ_RADIX_OK;
47
48
167k
end:
49
167k
    CF_NORET(mp_clear(newMp));
50
167k
    util::free(newMp);
51
52
167k
    return ret;
53
164k
}
54
55
13.5k
void Bignum::baseConversion(void) const {
56
13.5k
#if !defined(WOLFSSL_SP_MATH)
57
13.5k
    uint8_t base = 2;
58
13.5k
    char* str = nullptr;
59
60
13.5k
    try { base = ds.Get<uint8_t>(); } catch ( fuzzing::datasource::Datasource::OutOfData ) { }
61
62
#if defined(CRYPTOFUZZ_WOLFCRYPT_DEBUG)
63
    std::cout << "Convert to base " << std::to_string(base) << " and back" << std::endl;
64
#endif
65
13.5k
    {
66
13.5k
        int size;
67
13.5k
        CF_CHECK_EQ(mp_radix_size(mp, base, &size), MP_OKAY);
68
290
        CF_ASSERT(size > 0, "Output of mp_radix_size is 0 or less");
69
70
290
        str = (char*)util::malloc(size);
71
72
290
#if defined(WOLFSSL_SP_MATH) || defined(WOLFSSL_SP_MATH_ALL) || !defined(USE_FAST_MATH)
73
290
        CF_CHECK_EQ(mp_toradix(mp, str, base), MP_OKAY);
74
#else
75
        wolfCrypt_detail::haveAllocFailure = false;
76
        CF_ASSERT(
77
                    mp_toradix(mp, str, base) == MP_OKAY ||
78
                    wolfCrypt_detail::haveAllocFailure ||
79
                    base < 2 ||
80
                    base > 64,
81
                    "wolfCrypt cannot convert mp to string");
82
83
        /* If allocation failure occurred, then do not use 'str' */
84
        CF_CHECK_FALSE(wolfCrypt_detail::haveAllocFailure);
85
#endif
86
87
244
        {
88
244
            const auto ret = read_radix(mp, str, base);
89
244
            CF_ASSERT(ret == READ_RADIX_OK || ret == READ_RADIX_FAIL_MEMORY, "wolfCrypt cannot parse the output of mp_toradix");
90
244
        }
91
244
    }
92
93
13.5k
end:
94
13.5k
    util::free(str);
95
13.5k
#endif
96
13.5k
}
97
98
5.57k
void Bignum::binaryConversion(void) const {
99
5.57k
    uint8_t* data = nullptr;
100
5.57k
    CF_CHECK_EQ(mp_isneg(mp), 0);
101
102
#if LIBWOLFSSL_VERSION_HEX == 0x05005001
103
    {
104
        /* Old version of the binary conversion logic, which doesn't crash if
105
         * mp_to_unsigned_bin_len() succeeds with an undersized buffer.
106
         *
107
         * This logic is retained specifically to prevent the libecc
108
         * OSS-Fuzz fuzzer from crashing, because this uses an older version
109
         * of wolfCrypt (specifically 0x05005001), which still has the
110
         * mp_to_unsigned_bin_len() bug.
111
         */
112
113
        const auto size = mp_unsigned_bin_size(mp);
114
        CF_ASSERT(size >= 0, "mp_unsigned_bin_size returned negative value");
115
116
        data = util::malloc(size);
117
        CF_CHECK_EQ(mp_to_unsigned_bin_len(mp, data, size), MP_OKAY);
118
119
        /* Ensure no allocation failure occurs in mp_read_unsigned_bin
120
         * because this can leave the mp in a corrupted state
121
         */
122
        const auto cached_disableAllocationFailures = wolfCrypt_detail::disableAllocationFailures;
123
        wolfCrypt_detail::disableAllocationFailures = true;
124
125
        CF_ASSERT(mp_read_unsigned_bin(mp, data, size) == MP_OKAY, "Cannot parse output of mp_to_unsigned_bin_len");
126
127
        wolfCrypt_detail::disableAllocationFailures = cached_disableAllocationFailures;
128
    }
129
#else
130
5.06k
    {
131
5.06k
        bool randomSize = false;
132
133
5.06k
        try { randomSize = ds.Get<bool>(); } catch ( fuzzing::datasource::Datasource::OutOfData ) { }
134
135
5.06k
        size_t size = 0;
136
5.06k
        int numBits = 0;
137
138
5.06k
        if ( randomSize == false ) {
139
2.53k
            const auto size2 = mp_unsigned_bin_size(mp);
140
2.53k
            CF_ASSERT(size2 >= 0, "mp_unsigned_bin_size returned negative value");
141
2.53k
            size = size2;
142
2.53k
        } else {
143
2.52k
            try {
144
2.52k
                size = ds.Get<uint16_t>();
145
2.52k
            } catch ( fuzzing::datasource::Datasource::OutOfData ) { }
146
147
2.52k
            numBits = mp_count_bits(mp);
148
2.52k
            CF_ASSERT(numBits >= 0, "mp_count_bits result is negative");
149
2.52k
        }
150
151
5.06k
        data = util::malloc(size);
152
5.06k
        CF_CHECK_EQ(mp_to_unsigned_bin_len(mp, data, size), MP_OKAY);
153
154
4.12k
        CF_ASSERT(
155
4.12k
                size * 8 >= static_cast<size_t>(numBits),
156
4.12k
                "mp_to_unsigned_bin_len succeeded with undersized buffer");
157
158
        /* Ensure no allocation failure occurs in mp_read_unsigned_bin
159
         * because this can leave the mp in a corrupted state
160
         */
161
4.12k
        const auto cached_disableAllocationFailures = wolfCrypt_detail::disableAllocationFailures;
162
4.12k
        wolfCrypt_detail::disableAllocationFailures = true;
163
164
4.12k
        if ( randomSize == false ) {
165
1.74k
            CF_ASSERT(mp_read_unsigned_bin(mp, data, size) == MP_OKAY, "Cannot parse output of mp_to_unsigned_bin_len");
166
2.37k
        } else {
167
            /* mp_read_unsigned_bin can fail if the input buffer is too large.
168
             *
169
             * Read into a temp variable, and copy to mp if reading succeeds, otherwise
170
             * retain old value in mp.
171
             */
172
2.37k
            Bignum tmp(ds);
173
2.37k
            if ( mp_read_unsigned_bin(tmp.GetPtrDirect(), data, size) == MP_OKAY ) {
174
53
                /* ignore result */ mp_copy(tmp.GetPtrDirect(), mp);
175
53
            }
176
2.37k
        }
177
178
4.12k
        wolfCrypt_detail::disableAllocationFailures = cached_disableAllocationFailures;
179
4.12k
    }
180
0
#endif
181
182
183
5.57k
end:
184
5.57k
    util::free(data);
185
5.57k
}
186
187
703k
void Bignum::invariants(void) const {
188
703k
#if defined(WOLFSSL_SP_MATH) || defined(WOLFSSL_SP_MATH_ALL)
189
703k
    CF_ASSERT(mp->used <= mp->size, "used is larger than size");
190
#elif !defined(USE_FAST_MATH)
191
    CF_ASSERT(mp->used <= mp->alloc, "used is larger than size");
192
#endif
193
703k
}
194
195
Bignum::Bignum(Datasource& ds, const bool mp_init_size_ok) :
196
307k
    ds(ds) {
197
307k
    mp = (mp_int*)util::malloc(sizeof(mp_int));
198
199
307k
    if ( init_mp_int(mp, ds, mp_init_size_ok) != MP_OKAY ) {
200
0
        util::free(mp);
201
0
        throw std::exception();
202
0
    }
203
307k
}
204
205
Bignum::Bignum(mp_int* mp, Datasource& ds) :
206
12.2k
    mp(mp),
207
12.2k
    ds(ds),
208
12.2k
    noFree(true)
209
12.2k
{ }
210
211
Bignum::Bignum(const Bignum& other) :
212
141k
    ds(other.ds) {
213
141k
    mp = (mp_int*)util::malloc(sizeof(mp_int));
214
141k
    if ( init_mp_int(mp, ds) != MP_OKAY ) {
215
0
        util::free(mp);
216
0
        throw std::exception();
217
0
    }
218
141k
    if ( mp_copy(other.mp, mp) != MP_OKAY ) {
219
0
        util::free(mp);
220
0
        throw std::exception();
221
0
    }
222
141k
}
223
224
Bignum::Bignum(const Bignum&& other) :
225
141k
    ds(other.ds) {
226
141k
    mp = (mp_int*)util::malloc(sizeof(mp_int));
227
141k
    if ( init_mp_int(mp, ds) != MP_OKAY ) {
228
0
        util::free(mp);
229
0
        throw std::exception();
230
0
    }
231
141k
    if ( mp_copy(other.mp, mp) != MP_OKAY ) {
232
0
        util::free(mp);
233
0
        throw std::exception();
234
0
    }
235
141k
}
236
237
604k
Bignum::~Bignum() {
238
604k
    invariants();
239
604k
    if ( noFree == false ) {
240
589k
        CF_NORET(mp_clear(mp));
241
589k
        util::free(mp);
242
589k
    }
243
604k
}
244
245
0
void Bignum::SetNoFree(void) {
246
0
    noFree = true;
247
0
}
248
249
214k
bool Bignum::Set(const std::string s) {
250
214k
    bool ret = false;
251
252
214k
    bool hex = false;
253
214k
    try {
254
214k
        hex = ds.Get<bool>();
255
214k
    } catch ( ... ) { }
256
257
#if defined(WOLFSSL_SP_MATH)
258
    hex = true;
259
#endif
260
261
214k
    if ( hex == true ) {
262
85.5k
        CF_CHECK_EQ(read_radix(mp, util::DecToHex(s), 16), READ_RADIX_OK);
263
128k
    } else {
264
128k
        CF_CHECK_EQ(read_radix(mp, s, 10), READ_RADIX_OK);
265
126k
    }
266
267
210k
    ret = true;
268
214k
end:
269
214k
    return ret;
270
210k
}
271
272
32.4k
bool Bignum::Set(const component::Bignum i) {
273
32.4k
    bool ret = false;
274
275
32.4k
    CF_CHECK_EQ(Set(i.ToString()), true);
276
277
31.6k
    ret = true;
278
32.4k
end:
279
32.4k
    return ret;
280
31.6k
}
281
282
230k
mp_int* Bignum::GetPtr(void) const {
283
230k
    invariants();
284
285
230k
    {
286
        /* Optionally clamp the bignum. This should not affect its value. */
287
288
230k
        bool clamp = false;
289
290
230k
        try { clamp = ds.Get<bool>(); } catch ( fuzzing::datasource::Datasource::OutOfData ) { }
291
292
230k
        if ( clamp ) {
293
            /* Implemented as a macro so CF_NORET cannot be used here */
294
19.4k
            /* noret */ mp_clamp(mp);
295
19.4k
        }
296
230k
    }
297
298
230k
    {
299
        /* Optionally convert to a random base and back */
300
301
230k
        bool convert = false;
302
303
230k
        try { convert = ds.Get<bool>(); } catch ( fuzzing::datasource::Datasource::OutOfData ) { }
304
305
230k
        if ( convert ) {
306
19.2k
            baseConversion();
307
19.2k
        }
308
230k
    }
309
310
230k
    {
311
        /* Optionally convert to bytes and back */
312
313
230k
        bool convert = false;
314
315
230k
        try { convert = ds.Get<bool>(); } catch ( fuzzing::datasource::Datasource::OutOfData ) { }
316
317
230k
        if ( convert ) {
318
18.0k
            binaryConversion();
319
18.0k
        }
320
230k
    }
321
322
230k
    return mp;
323
230k
}
324
325
183k
mp_int* Bignum::GetPtrDirect(void) const {
326
183k
    return mp;
327
183k
}
328
329
1.28k
std::optional<uint64_t> Bignum::AsUint64(void) const {
330
1.28k
    std::optional<uint64_t> ret = std::nullopt;
331
1.28k
    uint64_t v = 0;
332
333
1.28k
#if !defined(WOLFSSL_SP_MATH)
334
1.28k
    CF_CHECK_EQ(mp_isneg(mp), 0);
335
1.22k
#endif
336
1.22k
    CF_CHECK_LTE(mp_count_bits(mp), (int)(sizeof(v) * 8));
337
1.18k
    CF_CHECK_EQ(mp_to_unsigned_bin_len(mp, (uint8_t*)&v, sizeof(v)), MP_OKAY);
338
1.18k
    v =
339
1.18k
        ((v & 0xFF00000000000000) >> 56) |
340
1.18k
        ((v & 0x00FF000000000000) >> 40) |
341
1.18k
        ((v & 0x0000FF0000000000) >> 24) |
342
1.18k
        ((v & 0x000000FF00000000) >>  8) |
343
1.18k
        ((v & 0x00000000FF000000) <<  8) |
344
1.18k
        ((v & 0x0000000000FF0000) << 24) |
345
1.18k
        ((v & 0x000000000000FF00) << 40) |
346
1.18k
        ((v & 0x00000000000000FF) << 56);
347
348
1.18k
    ret = v;
349
1.28k
end:
350
1.28k
    return ret;
351
1.18k
}
352
353
28.9k
std::optional<std::string> Bignum::ToDecString(void) {
354
28.9k
    std::optional<std::string> ret = std::nullopt;
355
28.9k
    char* str = nullptr;
356
357
#if defined(WOLFSSL_SP_MATH)
358
    str = (char*)util::malloc(8192);
359
360
    CF_CHECK_EQ(mp_tohex(mp, str), MP_OKAY);
361
    ret = { util::HexToDec(str) };
362
#else
363
28.9k
    bool hex = false;
364
28.9k
    int size;
365
366
28.9k
    try {
367
28.9k
        hex = ds.Get<bool>();
368
28.9k
    } catch ( ... ) { }
369
370
371
28.9k
    if ( hex == true ) {
372
2.34k
        CF_CHECK_EQ(mp_radix_size(mp, 16, &size), MP_OKAY);
373
2.21k
        CF_ASSERT(size > 0, "Output of mp_radix_size is 0 or less");
374
375
2.21k
        str = (char*)util::malloc(size+1);
376
377
2.21k
        CF_CHECK_EQ(mp_tohex(mp, str), MP_OKAY);
378
2.16k
        ret = { util::HexToDec(str) };
379
26.6k
    } else {
380
26.6k
        CF_CHECK_EQ(mp_radix_size(mp, 10, &size), MP_OKAY);
381
25.9k
        CF_ASSERT(size > 0, "Output of mp_radix_size is 0 or less");
382
383
25.9k
        str = (char*)util::malloc(size);
384
385
25.9k
        CF_CHECK_EQ(mp_toradix(mp, str, 10), MP_OKAY);
386
25.6k
        ret = std::string(str);
387
25.6k
    }
388
27.7k
#endif
389
390
28.9k
end:
391
28.9k
    free(str);
392
393
28.9k
    return ret;
394
28.9k
}
395
396
23.6k
std::optional<component::Bignum> Bignum::ToComponentBignum(void) {
397
23.6k
    std::optional<component::Bignum> ret = std::nullopt;
398
399
23.6k
    auto str = ToDecString();
400
23.6k
    CF_CHECK_NE(str, std::nullopt);
401
23.0k
    ret = { str };
402
23.6k
end:
403
23.6k
    return ret;
404
23.0k
}
405
406
17.1k
bool Bignum::ToBin(uint8_t* dest, const size_t size) {
407
17.1k
    bool ret = false;
408
409
17.1k
    const auto required = mp_unsigned_bin_size(GetPtr());
410
17.1k
    CF_ASSERT(required >= 0, "mp_unsigned_bin_size returned negative value");
411
412
17.1k
    CF_CHECK_GTE(size, static_cast<size_t>(required));
413
16.9k
    CF_CHECK_EQ(mp_to_unsigned_bin_len(GetPtr(), dest, size), MP_OKAY);
414
415
16.3k
    ret = true;
416
17.1k
end:
417
17.1k
    return ret;
418
16.3k
}
419
420
421
13.3k
std::optional<std::vector<uint8_t>> Bignum::ToBin(Datasource& ds, const component::Bignum b, std::optional<size_t> size) {
422
13.3k
    std::optional<std::vector<uint8_t>> ret = std::nullopt;
423
13.3k
    std::vector<uint8_t> v;
424
13.3k
    Bignum bn(ds);
425
13.3k
    uint16_t padding = 0;
426
427
13.3k
    CF_CHECK_EQ(bn.Set(b), true);
428
12.8k
    if ( size != std::nullopt ) {
429
0
        v.resize(*size);
430
12.8k
    } else {
431
12.8k
        try {
432
12.8k
            padding = ds.Get<uint16_t>();
433
12.8k
        } catch ( fuzzing::datasource::Datasource::OutOfData ) { }
434
435
12.8k
        v.resize( mp_unsigned_bin_size(bn.GetPtr()) + padding );
436
12.8k
    }
437
438
12.8k
    CF_CHECK_EQ(bn.ToBin(v.data(), v.size()), true);
439
440
12.1k
    ret = v;
441
13.3k
end:
442
13.3k
    return ret;
443
12.1k
}
444
445
bool Bignum::ToBin(
446
        Datasource& ds,
447
        const component::Bignum b,
448
        uint8_t* dest,
449
        const size_t size,
450
14.9k
        const bool mustSucceed) {
451
14.9k
    bool ret = false;
452
14.9k
    if ( mustSucceed == true ) {
453
11.4k
        std::optional<std::vector<uint8_t>> bytes;
454
11.4k
        CF_CHECK_NE(bytes = util::DecToBin(b.ToTrimmedString(), size), std::nullopt);
455
11.2k
        memcpy(dest, bytes->data(), bytes->size());
456
11.2k
        ret = true;
457
11.2k
    } else {
458
3.41k
        Bignum bn(ds);
459
460
3.41k
        CF_CHECK_EQ(bn.Set(b), true);
461
3.33k
        CF_CHECK_EQ(bn.ToBin(dest, size), true);
462
463
3.24k
        ret = true;
464
3.24k
    }
465
14.9k
end:
466
14.9k
    return ret;
467
14.9k
}
468
469
bool Bignum::ToBin(
470
        Datasource& ds,
471
        const component::BignumPair b,
472
        uint8_t* dest,
473
        const size_t size,
474
3.71k
        const bool mustSucceed) {
475
3.71k
    CF_ASSERT((size % 2) == 0, "Input size is not multiple of 2 in Bignum::ToBin");
476
477
3.71k
    bool ret = false;
478
3.71k
    const auto halfSize = size / 2;
479
480
3.71k
    CF_CHECK_EQ(ToBin(ds, b.first, dest, halfSize, mustSucceed), true);
481
3.63k
    CF_CHECK_EQ(ToBin(ds, b.second, dest + halfSize, halfSize, mustSucceed), true);
482
483
3.55k
    ret = true;
484
3.71k
end:
485
3.71k
    return ret;
486
3.55k
}
487
488
4.03k
std::optional<component::Bignum> Bignum::BinToBignum(Datasource& ds, const uint8_t* src, const size_t size) {
489
4.03k
    std::optional<component::Bignum> ret = std::nullopt;
490
491
4.03k
    wolfCrypt_bignum::Bignum bn(ds);
492
4.03k
    CF_CHECK_EQ(mp_read_unsigned_bin(bn.GetPtr(), src, size), MP_OKAY);
493
494
3.88k
    ret = bn.ToComponentBignum();
495
496
4.03k
end:
497
4.03k
    return ret;
498
3.88k
}
499
500
2.61k
std::optional<component::BignumPair> Bignum::BinToBignumPair(Datasource& ds, const uint8_t* src, const size_t size) {
501
2.61k
    CF_ASSERT((size % 2) == 0, "Input size is not multiple of 2 in Bignum::BinToBignumPair");
502
503
2.61k
    std::optional<component::BignumPair> ret = std::nullopt;
504
2.61k
    std::optional<component::Bignum> A, B;
505
2.61k
    const auto halfSize = size / 2;
506
507
2.61k
    {
508
2.61k
        wolfCrypt_bignum::Bignum bn(ds);
509
2.61k
        CF_CHECK_EQ(mp_read_unsigned_bin(bn.GetPtr(), src, halfSize), MP_OKAY);
510
2.60k
        CF_CHECK_NE(A = bn.ToComponentBignum(), std::nullopt);
511
2.57k
    }
512
513
0
    {
514
2.57k
        wolfCrypt_bignum::Bignum bn(ds);
515
2.57k
        CF_CHECK_EQ(mp_read_unsigned_bin(bn.GetPtr(), src + halfSize, halfSize), MP_OKAY);
516
2.55k
        CF_CHECK_NE(B = bn.ToComponentBignum(), std::nullopt);
517
2.52k
    }
518
519
520
0
    ret = {A->ToTrimmedString(), B->ToTrimmedString()};
521
522
2.61k
end:
523
2.61k
    return ret;
524
2.52k
}
525
526
35.3k
void Bignum::Randomize(void) {
527
35.3k
    std::vector<uint8_t> data;
528
35.3k
    try {
529
35.3k
        data = ds.GetData(0, 1, 1024);
530
35.3k
    } catch ( fuzzing::datasource::Datasource::OutOfData ) { }
531
532
35.3k
    if ( !data.empty() ) {
533
1.62k
        /* ignore return value */ mp_read_unsigned_bin(GetPtrDirect(), data.data(), data.size());
534
1.62k
    }
535
35.3k
}
536
537
6.88k
bool Bignum::operator==(const Bignum& rhs) const {
538
6.88k
    return mp_cmp(GetPtr(), rhs.GetPtr()) == MP_EQ;
539
6.88k
}
540
541
BignumCluster::BignumCluster(Datasource& ds, Bignum bn0, Bignum bn1, Bignum bn2, Bignum bn3) :
542
35.3k
    ds(ds),
543
35.3k
    bn({bn0, bn1, bn2, bn3})
544
35.3k
{ }
545
546
35.3k
BignumCluster::~BignumCluster() {
547
176k
    for (size_t i = 0; i < 4; i++) {
548
141k
        if ( cache.bn[i] == nullptr ) {
549
2.99k
            continue;
550
2.99k
        }
551
552
138k
        mp_clear(cache.bn[i]);
553
138k
        util::free(cache.bn[i]);
554
138k
    }
555
35.3k
}
556
557
58.8k
Bignum& BignumCluster::operator[](const size_t index) {
558
58.8k
    CF_ASSERT(index < bn.size(), "Invalid index requested in BignumCluster::operator[]");
559
560
58.8k
    try {
561
        /* Rewire? */
562
58.8k
        if ( ds.Get<bool>() == true ) {
563
            /* Pick a random bignum */
564
7.11k
            const auto newIndex = ds.Get<uint8_t>() % 4;
565
566
            /* Same value? */
567
7.11k
            if ( bn[newIndex] == bn[index] ) {
568
                /* Then return reference to other bignum */
569
2.32k
                return bn[newIndex];
570
2.32k
            }
571
572
            /* Fall through */
573
7.11k
        }
574
58.8k
    } catch ( fuzzing::datasource::Datasource::OutOfData ) { }
575
576
56.4k
    return bn[index];
577
58.8k
}
578
579
139k
bool BignumCluster::Set(const size_t index, const std::string s) {
580
139k
    CF_ASSERT(index < bn.size(), "Invalid index requested in BignumCluster::Set");
581
582
139k
    return bn[index].Set(s);
583
139k
}
584
585
480
mp_int* BignumCluster::GetDestPtr(const size_t index) {
586
    /* Because it is requested as a destination pointer,
587
     * this bignum will be altered, hence invalidate
588
     * the cache
589
     */
590
480
    InvalidateCache();
591
592
480
    return bn[index].GetPtr();
593
480
}
594
595
13.2k
mp_int* BignumCluster::GetResPtr(void) {
596
13.2k
    CF_ASSERT(res_index == std::nullopt, "Reusing result pointer");
597
598
13.2k
    res_index = 0;
599
600
13.2k
    try { res_index = ds.Get<uint8_t>() % 4; }
601
13.2k
    catch ( fuzzing::datasource::Datasource::OutOfData ) { }
602
603
13.2k
    InvalidateCache();
604
605
13.2k
    return bn[*res_index].GetPtr();
606
13.2k
}
607
608
8.07k
bool BignumCluster::CopyResult(Bignum& res) const {
609
8.07k
    bool ret = false;
610
611
8.07k
    CF_ASSERT(res_index != std::nullopt, "Result index is undefined");
612
8.07k
    wolfCrypt_detail::disableAllocationFailures = true;
613
614
8.07k
    const auto src = bn[*res_index].GetPtrDirect();
615
8.07k
    auto dest = res.GetPtr();
616
617
8.07k
    if ( mp_copy(src, dest) != MP_OKAY ) {
618
#if defined(USE_FAST_MATH)
619
        goto end;
620
#elif defined(USE_INTEGER_HEAP_MATH)
621
        CF_NORET(mp_clear(dest));
622
        CF_ASSERT(mp_init_size(dest, src->alloc) == 0, "Cannot initialze result");
623
        CF_ASSERT(
624
                mp_copy(src, dest) == MP_OKAY,
625
                "mp_copy failed unexpectedly");
626
#else
627
160
        CF_NORET(mp_clear(dest));
628
160
        CF_ASSERT(mp_init_size(dest, src->size) == 0, "Cannot initialze result");
629
160
        CF_ASSERT(
630
160
                mp_copy(src, dest) == MP_OKAY,
631
160
                "mp_copy failed unexpectedly");
632
160
#endif
633
160
    }
634
635
8.07k
    ret = true;
636
#if defined(USE_FAST_MATH)
637
end:
638
#endif
639
8.07k
    wolfCrypt_detail::disableAllocationFailures = false;
640
8.07k
    return ret;
641
8.07k
}
642
643
34.5k
void BignumCluster::Save(void) {
644
172k
    for (size_t i = 0; i < 4; i++) {
645
138k
        mp_int* cached_mp = (mp_int*)util::malloc(sizeof(mp_int));
646
647
138k
        wolfCrypt_detail::disableAllocationFailures = true;
648
649
138k
        CF_ASSERT(mp_init(cached_mp) == MP_OKAY, "mp_init failed unexpectedly");
650
138k
        CF_ASSERT(mp_copy(bn[i].GetPtrDirect(), cached_mp) == MP_OKAY, "mp_copy failed unexpectedly");
651
652
138k
        wolfCrypt_detail::disableAllocationFailures = false;
653
654
138k
        cache.bn[i] = cached_mp;
655
138k
    }
656
34.5k
}
657
658
13.9k
void BignumCluster::InvalidateCache(void) {
659
13.9k
    cache.invalid = true;
660
13.9k
}
661
662
14.5k
bool BignumCluster::EqualsCache(void) const {
663
14.5k
    if ( cache.invalid == true ) {
664
9.57k
        return true;
665
9.57k
    }
666
667
25.0k
    for (size_t i = 0; i < 4; i++) {
668
20.0k
        if ( cache.bn[i] == nullptr ) {
669
0
            continue;
670
0
        }
671
672
20.0k
        wolfCrypt_detail::disableAllocationFailures = true;
673
674
20.0k
        if ( mp_cmp(bn[i].GetPtrDirect(), cache.bn[i]) != MP_EQ ) {
675
#if defined(CRYPTOFUZZ_WOLFCRYPT_DEBUG)
676
            char str[8192];
677
678
            std::cout << "Bignum with index " << std::to_string(i) << " was changed" << std::endl;
679
680
            wolfCrypt_detail::disableAllocationFailures = true;
681
682
            CF_ASSERT(mp_tohex(cache.bn[i], str) == MP_OKAY, "mp_tohex failed unexpectedly");
683
            printf("it was: %s\n", str);
684
685
            CF_ASSERT(mp_tohex(bn[i].GetPtrDirect(), str) == MP_OKAY, "mp_tohex failed unexpectedly");
686
            printf("it is now %s\n", str);
687
688
#endif
689
0
            wolfCrypt_detail::disableAllocationFailures = false;
690
691
0
            return false;
692
0
        }
693
694
20.0k
        wolfCrypt_detail::disableAllocationFailures = false;
695
20.0k
    }
696
697
5.00k
    return true;
698
5.00k
}
699
700
} /* namespace wolfCrypt_bignum */
701
} /* namespace module */
702
} /* namespace cryptofuzz */