Useless header include of openssl/rand.h
[openssl.git] / crypto / bn / bn_prime.c
1 /*
2  * WARNING: do not edit!
3  * Generated by crypto/bn/bn_prime.pl
4  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
5  *
6  * Licensed under the OpenSSL license (the "License").  You may not use
7  * this file except in compliance with the License.  You can obtain a copy
8  * in the file LICENSE in the source distribution or at
9  * https://www.openssl.org/source/license.html
10  */
11
12 #include <stdio.h>
13 #include <time.h>
14 #include "internal/cryptlib.h"
15 #include "bn_lcl.h"
16
17 /*
18  * The quick sieve algorithm approach to weeding out primes is Philip
19  * Zimmermann's, as implemented in PGP.  I have had a read of his comments
20  * and implemented my own version.
21  */
22 #include "bn_prime.h"
23
24 static int witness(BIGNUM *w, const BIGNUM *a, const BIGNUM *a1,
25                    const BIGNUM *a1_odd, int k, BN_CTX *ctx,
26                    BN_MONT_CTX *mont);
27 static int probable_prime(BIGNUM *rnd, int bits, prime_t *mods);
28 static int probable_prime_dh_safe(BIGNUM *rnd, int bits,
29                                   const BIGNUM *add, const BIGNUM *rem,
30                                   BN_CTX *ctx);
31
32 static const int prime_offsets[480] = {
33     13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83,
34     89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163,
35     167, 169, 173, 179, 181, 191, 193, 197, 199, 211, 221, 223, 227, 229,
36     233, 239, 241, 247, 251, 257, 263, 269, 271, 277, 281, 283, 289, 293,
37     299, 307, 311, 313, 317, 323, 331, 337, 347, 349, 353, 359, 361, 367,
38     373, 377, 379, 383, 389, 391, 397, 401, 403, 409, 419, 421, 431, 433,
39     437, 439, 443, 449, 457, 461, 463, 467, 479, 481, 487, 491, 493, 499,
40     503, 509, 521, 523, 527, 529, 533, 541, 547, 551, 557, 559, 563, 569,
41     571, 577, 587, 589, 593, 599, 601, 607, 611, 613, 617, 619, 629, 631,
42     641, 643, 647, 653, 659, 661, 667, 673, 677, 683, 689, 691, 697, 701,
43     703, 709, 713, 719, 727, 731, 733, 739, 743, 751, 757, 761, 767, 769,
44     773, 779, 787, 793, 797, 799, 809, 811, 817, 821, 823, 827, 829, 839,
45     841, 851, 853, 857, 859, 863, 871, 877, 881, 883, 887, 893, 899, 901,
46     907, 911, 919, 923, 929, 937, 941, 943, 947, 949, 953, 961, 967, 971,
47     977, 983, 989, 991, 997, 1003, 1007, 1009, 1013, 1019, 1021, 1027, 1031,
48     1033, 1037, 1039, 1049, 1051, 1061, 1063, 1069, 1073, 1079, 1081, 1087,
49     1091, 1093, 1097, 1103, 1109, 1117, 1121, 1123, 1129, 1139, 1147, 1151,
50     1153, 1157, 1159, 1163, 1171, 1181, 1187, 1189, 1193, 1201, 1207, 1213,
51     1217, 1219, 1223, 1229, 1231, 1237, 1241, 1247, 1249, 1259, 1261, 1271,
52     1273, 1277, 1279, 1283, 1289, 1291, 1297, 1301, 1303, 1307, 1313, 1319,
53     1321, 1327, 1333, 1339, 1343, 1349, 1357, 1361, 1363, 1367, 1369, 1373,
54     1381, 1387, 1391, 1399, 1403, 1409, 1411, 1417, 1423, 1427, 1429, 1433,
55     1439, 1447, 1451, 1453, 1457, 1459, 1469, 1471, 1481, 1483, 1487, 1489,
56     1493, 1499, 1501, 1511, 1513, 1517, 1523, 1531, 1537, 1541, 1543, 1549,
57     1553, 1559, 1567, 1571, 1577, 1579, 1583, 1591, 1597, 1601, 1607, 1609,
58     1613, 1619, 1621, 1627, 1633, 1637, 1643, 1649, 1651, 1657, 1663, 1667,
59     1669, 1679, 1681, 1691, 1693, 1697, 1699, 1703, 1709, 1711, 1717, 1721,
60     1723, 1733, 1739, 1741, 1747, 1751, 1753, 1759, 1763, 1769, 1777, 1781,
61     1783, 1787, 1789, 1801, 1807, 1811, 1817, 1819, 1823, 1829, 1831, 1843,
62     1847, 1849, 1853, 1861, 1867, 1871, 1873, 1877, 1879, 1889, 1891, 1901,
63     1907, 1909, 1913, 1919, 1921, 1927, 1931, 1933, 1937, 1943, 1949, 1951,
64     1957, 1961, 1963, 1973, 1979, 1987, 1993, 1997, 1999, 2003, 2011, 2017,
65     2021, 2027, 2029, 2033, 2039, 2041, 2047, 2053, 2059, 2063, 2069, 2071,
66     2077, 2081, 2083, 2087, 2089, 2099, 2111, 2113, 2117, 2119, 2129, 2131,
67     2137, 2141, 2143, 2147, 2153, 2159, 2161, 2171, 2173, 2179, 2183, 2197,
68     2201, 2203, 2207, 2209, 2213, 2221, 2227, 2231, 2237, 2239, 2243, 2249,
69     2251, 2257, 2263, 2267, 2269, 2273, 2279, 2281, 2287, 2291, 2293, 2297,
70     2309, 2311
71 };
72
73 static const int prime_offset_count = 480;
74 static const int prime_multiplier = 2310;
75 static const int prime_multiplier_bits = 11; /* 2^|prime_multiplier_bits| <=
76                                               * |prime_multiplier| */
77 static const int first_prime_index = 5;
78
79 int BN_GENCB_call(BN_GENCB *cb, int a, int b)
80 {
81     /* No callback means continue */
82     if (!cb)
83         return 1;
84     switch (cb->ver) {
85     case 1:
86         /* Deprecated-style callbacks */
87         if (!cb->cb.cb_1)
88             return 1;
89         cb->cb.cb_1(a, b, cb->arg);
90         return 1;
91     case 2:
92         /* New-style callbacks */
93         return cb->cb.cb_2(a, b, cb);
94     default:
95         break;
96     }
97     /* Unrecognised callback type */
98     return 0;
99 }
100
101 int BN_generate_prime_ex(BIGNUM *ret, int bits, int safe,
102                          const BIGNUM *add, const BIGNUM *rem, BN_GENCB *cb)
103 {
104     BIGNUM *t;
105     int found = 0;
106     int i, j, c1 = 0;
107     BN_CTX *ctx = NULL;
108     prime_t *mods = NULL;
109     int checks = BN_prime_checks_for_size(bits);
110
111     if (bits < 2) {
112         /* There are no prime numbers this small. */
113         BNerr(BN_F_BN_GENERATE_PRIME_EX, BN_R_BITS_TOO_SMALL);
114         return 0;
115     } else if (bits == 2 && safe) {
116         /* The smallest safe prime (7) is three bits. */
117         BNerr(BN_F_BN_GENERATE_PRIME_EX, BN_R_BITS_TOO_SMALL);
118         return 0;
119     }
120
121     mods = OPENSSL_zalloc(sizeof(*mods) * NUMPRIMES);
122     if (mods == NULL)
123         goto err;
124
125     ctx = BN_CTX_new();
126     if (ctx == NULL)
127         goto err;
128     BN_CTX_start(ctx);
129     t = BN_CTX_get(ctx);
130     if (!t)
131         goto err;
132  loop:
133     /* make a random number and set the top and bottom bits */
134     if (add == NULL) {
135         if (!probable_prime(ret, bits, mods))
136             goto err;
137     } else {
138         if (safe) {
139             if (!probable_prime_dh_safe(ret, bits, add, rem, ctx))
140                 goto err;
141         } else {
142             if (!bn_probable_prime_dh(ret, bits, add, rem, ctx))
143                 goto err;
144         }
145     }
146     /* if (BN_mod_word(ret,(BN_ULONG)3) == 1) goto loop; */
147     if (!BN_GENCB_call(cb, 0, c1++))
148         /* aborted */
149         goto err;
150
151     if (!safe) {
152         i = BN_is_prime_fasttest_ex(ret, checks, ctx, 0, cb);
153         if (i == -1)
154             goto err;
155         if (i == 0)
156             goto loop;
157     } else {
158         /*
159          * for "safe prime" generation, check that (p-1)/2 is prime. Since a
160          * prime is odd, We just need to divide by 2
161          */
162         if (!BN_rshift1(t, ret))
163             goto err;
164
165         for (i = 0; i < checks; i++) {
166             j = BN_is_prime_fasttest_ex(ret, 1, ctx, 0, cb);
167             if (j == -1)
168                 goto err;
169             if (j == 0)
170                 goto loop;
171
172             j = BN_is_prime_fasttest_ex(t, 1, ctx, 0, cb);
173             if (j == -1)
174                 goto err;
175             if (j == 0)
176                 goto loop;
177
178             if (!BN_GENCB_call(cb, 2, c1 - 1))
179                 goto err;
180             /* We have a safe prime test pass */
181         }
182     }
183     /* we have a prime :-) */
184     found = 1;
185  err:
186     OPENSSL_free(mods);
187     if (ctx != NULL)
188         BN_CTX_end(ctx);
189     BN_CTX_free(ctx);
190     bn_check_top(ret);
191     return found;
192 }
193
194 int BN_is_prime_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed,
195                    BN_GENCB *cb)
196 {
197     return BN_is_prime_fasttest_ex(a, checks, ctx_passed, 0, cb);
198 }
199
200 int BN_is_prime_fasttest_ex(const BIGNUM *a, int checks, BN_CTX *ctx_passed,
201                             int do_trial_division, BN_GENCB *cb)
202 {
203     int i, j, ret = -1;
204     int k;
205     BN_CTX *ctx = NULL;
206     BIGNUM *A1, *A1_odd, *check; /* taken from ctx */
207     BN_MONT_CTX *mont = NULL;
208     const BIGNUM *A = NULL;
209
210     if (BN_cmp(a, BN_value_one()) <= 0)
211         return 0;
212
213     if (checks == BN_prime_checks)
214         checks = BN_prime_checks_for_size(BN_num_bits(a));
215
216     /* first look for small factors */
217     if (!BN_is_odd(a))
218         /* a is even => a is prime if and only if a == 2 */
219         return BN_is_word(a, 2);
220     if (do_trial_division) {
221         for (i = 1; i < NUMPRIMES; i++)
222             if (BN_mod_word(a, primes[i]) == 0)
223                 return 0;
224         if (!BN_GENCB_call(cb, 1, -1))
225             goto err;
226     }
227
228     if (ctx_passed != NULL)
229         ctx = ctx_passed;
230     else if ((ctx = BN_CTX_new()) == NULL)
231         goto err;
232     BN_CTX_start(ctx);
233
234     /* A := abs(a) */
235     if (a->neg) {
236         BIGNUM *t;
237         if ((t = BN_CTX_get(ctx)) == NULL)
238             goto err;
239         BN_copy(t, a);
240         t->neg = 0;
241         A = t;
242     } else
243         A = a;
244     A1 = BN_CTX_get(ctx);
245     A1_odd = BN_CTX_get(ctx);
246     check = BN_CTX_get(ctx);
247     if (check == NULL)
248         goto err;
249
250     /* compute A1 := A - 1 */
251     if (!BN_copy(A1, A))
252         goto err;
253     if (!BN_sub_word(A1, 1))
254         goto err;
255     if (BN_is_zero(A1)) {
256         ret = 0;
257         goto err;
258     }
259
260     /* write  A1  as  A1_odd * 2^k */
261     k = 1;
262     while (!BN_is_bit_set(A1, k))
263         k++;
264     if (!BN_rshift(A1_odd, A1, k))
265         goto err;
266
267     /* Montgomery setup for computations mod A */
268     mont = BN_MONT_CTX_new();
269     if (mont == NULL)
270         goto err;
271     if (!BN_MONT_CTX_set(mont, A, ctx))
272         goto err;
273
274     for (i = 0; i < checks; i++) {
275         if (!BN_pseudo_rand_range(check, A1))
276             goto err;
277         if (!BN_add_word(check, 1))
278             goto err;
279         /* now 1 <= check < A */
280
281         j = witness(check, A, A1, A1_odd, k, ctx, mont);
282         if (j == -1)
283             goto err;
284         if (j) {
285             ret = 0;
286             goto err;
287         }
288         if (!BN_GENCB_call(cb, 1, i))
289             goto err;
290     }
291     ret = 1;
292  err:
293     if (ctx != NULL) {
294         BN_CTX_end(ctx);
295         if (ctx_passed == NULL)
296             BN_CTX_free(ctx);
297     }
298     BN_MONT_CTX_free(mont);
299
300     return (ret);
301 }
302
303 int bn_probable_prime_dh_retry(BIGNUM *rnd, int bits, BN_CTX *ctx)
304 {
305     int i;
306     int ret = 0;
307
308  loop:
309     if (!BN_rand(rnd, bits, 0, 1))
310         goto err;
311
312     /* we now have a random number 'rand' to test. */
313
314     for (i = 1; i < NUMPRIMES; i++) {
315         /* check that rnd is a prime */
316         if (BN_mod_word(rnd, (BN_ULONG)primes[i]) <= 1) {
317             goto loop;
318         }
319     }
320     ret = 1;
321
322  err:
323     bn_check_top(rnd);
324     return (ret);
325 }
326
327 int bn_probable_prime_dh_coprime(BIGNUM *rnd, int bits, BN_CTX *ctx)
328 {
329     int i;
330     BIGNUM *offset_index;
331     BIGNUM *offset_count;
332     int ret = 0;
333
334     OPENSSL_assert(bits > prime_multiplier_bits);
335
336     BN_CTX_start(ctx);
337     if ((offset_index = BN_CTX_get(ctx)) == NULL)
338         goto err;
339     if ((offset_count = BN_CTX_get(ctx)) == NULL)
340         goto err;
341
342     if (!BN_add_word(offset_count, prime_offset_count))
343         goto err;
344
345  loop:
346     if (!BN_rand(rnd, bits - prime_multiplier_bits, 0, 1))
347         goto err;
348     if (BN_is_bit_set(rnd, bits))
349         goto loop;
350     if (!BN_rand_range(offset_index, offset_count))
351         goto err;
352
353     if (!BN_mul_word(rnd, prime_multiplier)
354         || !BN_add_word(rnd, prime_offsets[BN_get_word(offset_index)]))
355         goto err;
356
357     /* we now have a random number 'rand' to test. */
358
359     /* skip coprimes */
360     for (i = first_prime_index; i < NUMPRIMES; i++) {
361         /* check that rnd is a prime */
362         if (BN_mod_word(rnd, (BN_ULONG)primes[i]) <= 1) {
363             goto loop;
364         }
365     }
366     ret = 1;
367
368  err:
369     BN_CTX_end(ctx);
370     bn_check_top(rnd);
371     return ret;
372 }
373
374 static int witness(BIGNUM *w, const BIGNUM *a, const BIGNUM *a1,
375                    const BIGNUM *a1_odd, int k, BN_CTX *ctx,
376                    BN_MONT_CTX *mont)
377 {
378     if (!BN_mod_exp_mont(w, w, a1_odd, a, ctx, mont)) /* w := w^a1_odd mod a */
379         return -1;
380     if (BN_is_one(w))
381         return 0;               /* probably prime */
382     if (BN_cmp(w, a1) == 0)
383         return 0;               /* w == -1 (mod a), 'a' is probably prime */
384     while (--k) {
385         if (!BN_mod_mul(w, w, w, a, ctx)) /* w := w^2 mod a */
386             return -1;
387         if (BN_is_one(w))
388             return 1;           /* 'a' is composite, otherwise a previous 'w'
389                                  * would have been == -1 (mod 'a') */
390         if (BN_cmp(w, a1) == 0)
391             return 0;           /* w == -1 (mod a), 'a' is probably prime */
392     }
393     /*
394      * If we get here, 'w' is the (a-1)/2-th power of the original 'w', and
395      * it is neither -1 nor +1 -- so 'a' cannot be prime
396      */
397     bn_check_top(w);
398     return 1;
399 }
400
401 static int probable_prime(BIGNUM *rnd, int bits, prime_t *mods)
402 {
403     int i;
404     BN_ULONG delta;
405     BN_ULONG maxdelta = BN_MASK2 - primes[NUMPRIMES - 1];
406     char is_single_word = bits <= BN_BITS2;
407
408  again:
409     if (!BN_rand(rnd, bits, 1, 1))
410         return (0);
411     /* we now have a random number 'rnd' to test. */
412     for (i = 1; i < NUMPRIMES; i++)
413         mods[i] = (prime_t) BN_mod_word(rnd, (BN_ULONG)primes[i]);
414     /*
415      * If bits is so small that it fits into a single word then we
416      * additionally don't want to exceed that many bits.
417      */
418     if (is_single_word) {
419         BN_ULONG size_limit;
420         
421         if (bits == BN_BITS2) {
422             /*
423              * Shifting by this much has undefined behaviour so we do it a
424              * different way
425              */
426             size_limit = ~((BN_ULONG)0) - BN_get_word(rnd);
427         } else {
428             size_limit = (((BN_ULONG)1) << bits) - BN_get_word(rnd) - 1;
429         }
430         if (size_limit < maxdelta)
431             maxdelta = size_limit;
432     }
433     delta = 0;
434  loop:
435     if (is_single_word) {
436         BN_ULONG rnd_word = BN_get_word(rnd);
437
438         /*-
439          * In the case that the candidate prime is a single word then
440          * we check that:
441          *   1) It's greater than primes[i] because we shouldn't reject
442          *      3 as being a prime number because it's a multiple of
443          *      three.
444          *   2) That it's not a multiple of a known prime. We don't
445          *      check that rnd-1 is also coprime to all the known
446          *      primes because there aren't many small primes where
447          *      that's true.
448          */
449         for (i = 1; i < NUMPRIMES && primes[i] < rnd_word; i++) {
450             if ((mods[i] + delta) % primes[i] == 0) {
451                 delta += 2;
452                 if (delta > maxdelta)
453                     goto again;
454                 goto loop;
455             }
456         }
457     } else {
458         for (i = 1; i < NUMPRIMES; i++) {
459             /*
460              * check that rnd is not a prime and also that gcd(rnd-1,primes)
461              * == 1 (except for 2)
462              */
463             if (((mods[i] + delta) % primes[i]) <= 1) {
464                 delta += 2;
465                 if (delta > maxdelta)
466                     goto again;
467                 goto loop;
468             }
469         }
470     }
471     if (!BN_add_word(rnd, delta))
472         return (0);
473     if (BN_num_bits(rnd) != bits)
474         goto again;
475     bn_check_top(rnd);
476     return (1);
477 }
478
479 int bn_probable_prime_dh(BIGNUM *rnd, int bits,
480                          const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx)
481 {
482     int i, ret = 0;
483     BIGNUM *t1;
484
485     BN_CTX_start(ctx);
486     if ((t1 = BN_CTX_get(ctx)) == NULL)
487         goto err;
488
489     if (!BN_rand(rnd, bits, 0, 1))
490         goto err;
491
492     /* we need ((rnd-rem) % add) == 0 */
493
494     if (!BN_mod(t1, rnd, add, ctx))
495         goto err;
496     if (!BN_sub(rnd, rnd, t1))
497         goto err;
498     if (rem == NULL) {
499         if (!BN_add_word(rnd, 1))
500             goto err;
501     } else {
502         if (!BN_add(rnd, rnd, rem))
503             goto err;
504     }
505
506     /* we now have a random number 'rand' to test. */
507
508  loop:
509     for (i = 1; i < NUMPRIMES; i++) {
510         /* check that rnd is a prime */
511         if (BN_mod_word(rnd, (BN_ULONG)primes[i]) <= 1) {
512             if (!BN_add(rnd, rnd, add))
513                 goto err;
514             goto loop;
515         }
516     }
517     ret = 1;
518
519  err:
520     BN_CTX_end(ctx);
521     bn_check_top(rnd);
522     return (ret);
523 }
524
525 static int probable_prime_dh_safe(BIGNUM *p, int bits, const BIGNUM *padd,
526                                   const BIGNUM *rem, BN_CTX *ctx)
527 {
528     int i, ret = 0;
529     BIGNUM *t1, *qadd, *q;
530
531     bits--;
532     BN_CTX_start(ctx);
533     t1 = BN_CTX_get(ctx);
534     q = BN_CTX_get(ctx);
535     qadd = BN_CTX_get(ctx);
536     if (qadd == NULL)
537         goto err;
538
539     if (!BN_rshift1(qadd, padd))
540         goto err;
541
542     if (!BN_rand(q, bits, 0, 1))
543         goto err;
544
545     /* we need ((rnd-rem) % add) == 0 */
546     if (!BN_mod(t1, q, qadd, ctx))
547         goto err;
548     if (!BN_sub(q, q, t1))
549         goto err;
550     if (rem == NULL) {
551         if (!BN_add_word(q, 1))
552             goto err;
553     } else {
554         if (!BN_rshift1(t1, rem))
555             goto err;
556         if (!BN_add(q, q, t1))
557             goto err;
558     }
559
560     /* we now have a random number 'rand' to test. */
561     if (!BN_lshift1(p, q))
562         goto err;
563     if (!BN_add_word(p, 1))
564         goto err;
565
566  loop:
567     for (i = 1; i < NUMPRIMES; i++) {
568         /* check that p and q are prime */
569         /*
570          * check that for p and q gcd(p-1,primes) == 1 (except for 2)
571          */
572         if ((BN_mod_word(p, (BN_ULONG)primes[i]) == 0) ||
573             (BN_mod_word(q, (BN_ULONG)primes[i]) == 0)) {
574             if (!BN_add(p, p, padd))
575                 goto err;
576             if (!BN_add(q, q, qadd))
577                 goto err;
578             goto loop;
579         }
580     }
581     ret = 1;
582
583  err:
584     BN_CTX_end(ctx);
585     bn_check_top(p);
586     return (ret);
587 }