8e7f4f5676b913014fa80a4931cfdb7e100723b5
[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
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             BN_ULONG mod = BN_mod_word(a, primes[i]);
223             if (mod == (BN_ULONG)-1)
224                 goto err;
225             if (mod == 0)
226                 return 0;
227         }
228         if (!BN_GENCB_call(cb, 1, -1))
229             goto err;
230     }
231
232     if (ctx_passed != NULL)
233         ctx = ctx_passed;
234     else if ((ctx = BN_CTX_new()) == NULL)
235         goto err;
236     BN_CTX_start(ctx);
237
238     /* A := abs(a) */
239     if (a->neg) {
240         BIGNUM *t;
241         if ((t = BN_CTX_get(ctx)) == NULL)
242             goto err;
243         BN_copy(t, a);
244         t->neg = 0;
245         A = t;
246     } else
247         A = a;
248     A1 = BN_CTX_get(ctx);
249     A1_odd = BN_CTX_get(ctx);
250     check = BN_CTX_get(ctx);
251     if (check == NULL)
252         goto err;
253
254     /* compute A1 := A - 1 */
255     if (!BN_copy(A1, A))
256         goto err;
257     if (!BN_sub_word(A1, 1))
258         goto err;
259     if (BN_is_zero(A1)) {
260         ret = 0;
261         goto err;
262     }
263
264     /* write  A1  as  A1_odd * 2^k */
265     k = 1;
266     while (!BN_is_bit_set(A1, k))
267         k++;
268     if (!BN_rshift(A1_odd, A1, k))
269         goto err;
270
271     /* Montgomery setup for computations mod A */
272     mont = BN_MONT_CTX_new();
273     if (mont == NULL)
274         goto err;
275     if (!BN_MONT_CTX_set(mont, A, ctx))
276         goto err;
277
278     for (i = 0; i < checks; i++) {
279         if (!BN_pseudo_rand_range(check, A1))
280             goto err;
281         if (!BN_add_word(check, 1))
282             goto err;
283         /* now 1 <= check < A */
284
285         j = witness(check, A, A1, A1_odd, k, ctx, mont);
286         if (j == -1)
287             goto err;
288         if (j) {
289             ret = 0;
290             goto err;
291         }
292         if (!BN_GENCB_call(cb, 1, i))
293             goto err;
294     }
295     ret = 1;
296  err:
297     if (ctx != NULL) {
298         BN_CTX_end(ctx);
299         if (ctx_passed == NULL)
300             BN_CTX_free(ctx);
301     }
302     BN_MONT_CTX_free(mont);
303
304     return (ret);
305 }
306
307 int bn_probable_prime_dh_retry(BIGNUM *rnd, int bits, BN_CTX *ctx)
308 {
309     int i;
310     int ret = 0;
311
312  loop:
313     if (!BN_rand(rnd, bits, 0, 1))
314         goto err;
315
316     /* we now have a random number 'rand' to test. */
317
318     for (i = 1; i < NUMPRIMES; i++) {
319         /* check that rnd is a prime */
320         BN_ULONG mod = BN_mod_word(rnd, (BN_ULONG)primes[i]);
321         if (mod == (BN_ULONG)-1)
322             goto err;
323         if (mod <= 1) {
324             goto loop;
325         }
326     }
327     ret = 1;
328
329  err:
330     bn_check_top(rnd);
331     return (ret);
332 }
333
334 int bn_probable_prime_dh_coprime(BIGNUM *rnd, int bits, BN_CTX *ctx)
335 {
336     int i;
337     BIGNUM *offset_index;
338     BIGNUM *offset_count;
339     int ret = 0;
340
341     OPENSSL_assert(bits > prime_multiplier_bits);
342
343     BN_CTX_start(ctx);
344     if ((offset_index = BN_CTX_get(ctx)) == NULL)
345         goto err;
346     if ((offset_count = BN_CTX_get(ctx)) == NULL)
347         goto err;
348
349     if (!BN_add_word(offset_count, prime_offset_count))
350         goto err;
351
352  loop:
353     if (!BN_rand(rnd, bits - prime_multiplier_bits, 0, 1))
354         goto err;
355     if (BN_is_bit_set(rnd, bits))
356         goto loop;
357     if (!BN_rand_range(offset_index, offset_count))
358         goto err;
359
360     if (!BN_mul_word(rnd, prime_multiplier)
361         || !BN_add_word(rnd, prime_offsets[BN_get_word(offset_index)]))
362         goto err;
363
364     /* we now have a random number 'rand' to test. */
365
366     /* skip coprimes */
367     for (i = first_prime_index; i < NUMPRIMES; i++) {
368         /* check that rnd is a prime */
369         BN_ULONG mod = BN_mod_word(rnd, (BN_ULONG)primes[i]);
370         if (mod == (BN_ULONG)-1)
371             goto err;
372         if (mod <= 1)
373             goto loop;
374     }
375     ret = 1;
376
377  err:
378     BN_CTX_end(ctx);
379     bn_check_top(rnd);
380     return ret;
381 }
382
383 static int witness(BIGNUM *w, const BIGNUM *a, const BIGNUM *a1,
384                    const BIGNUM *a1_odd, int k, BN_CTX *ctx,
385                    BN_MONT_CTX *mont)
386 {
387     if (!BN_mod_exp_mont(w, w, a1_odd, a, ctx, mont)) /* w := w^a1_odd mod a */
388         return -1;
389     if (BN_is_one(w))
390         return 0;               /* probably prime */
391     if (BN_cmp(w, a1) == 0)
392         return 0;               /* w == -1 (mod a), 'a' is probably prime */
393     while (--k) {
394         if (!BN_mod_mul(w, w, w, a, ctx)) /* w := w^2 mod a */
395             return -1;
396         if (BN_is_one(w))
397             return 1;           /* 'a' is composite, otherwise a previous 'w'
398                                  * would have been == -1 (mod 'a') */
399         if (BN_cmp(w, a1) == 0)
400             return 0;           /* w == -1 (mod a), 'a' is probably prime */
401     }
402     /*
403      * If we get here, 'w' is the (a-1)/2-th power of the original 'w', and
404      * it is neither -1 nor +1 -- so 'a' cannot be prime
405      */
406     bn_check_top(w);
407     return 1;
408 }
409
410 static int probable_prime(BIGNUM *rnd, int bits, prime_t *mods)
411 {
412     int i;
413     BN_ULONG delta;
414     BN_ULONG maxdelta = BN_MASK2 - primes[NUMPRIMES - 1];
415     char is_single_word = bits <= BN_BITS2;
416
417  again:
418     if (!BN_rand(rnd, bits, 1, 1))
419         return (0);
420     /* we now have a random number 'rnd' to test. */
421     for (i = 1; i < NUMPRIMES; i++) {
422         BN_ULONG mod = BN_mod_word(rnd, (BN_ULONG)primes[i]);
423         if (mod == (BN_ULONG)-1)
424             return 0;
425         mods[i] = (prime_t) mod;
426     }
427     /*
428      * If bits is so small that it fits into a single word then we
429      * additionally don't want to exceed that many bits.
430      */
431     if (is_single_word) {
432         BN_ULONG size_limit;
433
434         if (bits == BN_BITS2) {
435             /*
436              * Shifting by this much has undefined behaviour so we do it a
437              * different way
438              */
439             size_limit = ~((BN_ULONG)0) - BN_get_word(rnd);
440         } else {
441             size_limit = (((BN_ULONG)1) << bits) - BN_get_word(rnd) - 1;
442         }
443         if (size_limit < maxdelta)
444             maxdelta = size_limit;
445     }
446     delta = 0;
447  loop:
448     if (is_single_word) {
449         BN_ULONG rnd_word = BN_get_word(rnd);
450
451         /*-
452          * In the case that the candidate prime is a single word then
453          * we check that:
454          *   1) It's greater than primes[i] because we shouldn't reject
455          *      3 as being a prime number because it's a multiple of
456          *      three.
457          *   2) That it's not a multiple of a known prime. We don't
458          *      check that rnd-1 is also coprime to all the known
459          *      primes because there aren't many small primes where
460          *      that's true.
461          */
462         for (i = 1; i < NUMPRIMES && primes[i] < rnd_word; i++) {
463             if ((mods[i] + delta) % primes[i] == 0) {
464                 delta += 2;
465                 if (delta > maxdelta)
466                     goto again;
467                 goto loop;
468             }
469         }
470     } else {
471         for (i = 1; i < NUMPRIMES; i++) {
472             /*
473              * check that rnd is not a prime and also that gcd(rnd-1,primes)
474              * == 1 (except for 2)
475              */
476             if (((mods[i] + delta) % primes[i]) <= 1) {
477                 delta += 2;
478                 if (delta > maxdelta)
479                     goto again;
480                 goto loop;
481             }
482         }
483     }
484     if (!BN_add_word(rnd, delta))
485         return (0);
486     if (BN_num_bits(rnd) != bits)
487         goto again;
488     bn_check_top(rnd);
489     return (1);
490 }
491
492 int bn_probable_prime_dh(BIGNUM *rnd, int bits,
493                          const BIGNUM *add, const BIGNUM *rem, BN_CTX *ctx)
494 {
495     int i, ret = 0;
496     BIGNUM *t1;
497
498     BN_CTX_start(ctx);
499     if ((t1 = BN_CTX_get(ctx)) == NULL)
500         goto err;
501
502     if (!BN_rand(rnd, bits, 0, 1))
503         goto err;
504
505     /* we need ((rnd-rem) % add) == 0 */
506
507     if (!BN_mod(t1, rnd, add, ctx))
508         goto err;
509     if (!BN_sub(rnd, rnd, t1))
510         goto err;
511     if (rem == NULL) {
512         if (!BN_add_word(rnd, 1))
513             goto err;
514     } else {
515         if (!BN_add(rnd, rnd, rem))
516             goto err;
517     }
518
519     /* we now have a random number 'rand' to test. */
520
521  loop:
522     for (i = 1; i < NUMPRIMES; i++) {
523         /* check that rnd is a prime */
524         BN_ULONG mod = BN_mod_word(rnd, (BN_ULONG)primes[i]);
525         if (mod == (BN_ULONG)-1)
526             goto err;
527         if (mod <= 1) {
528             if (!BN_add(rnd, rnd, add))
529                 goto err;
530             goto loop;
531         }
532     }
533     ret = 1;
534
535  err:
536     BN_CTX_end(ctx);
537     bn_check_top(rnd);
538     return (ret);
539 }
540
541 static int probable_prime_dh_safe(BIGNUM *p, int bits, const BIGNUM *padd,
542                                   const BIGNUM *rem, BN_CTX *ctx)
543 {
544     int i, ret = 0;
545     BIGNUM *t1, *qadd, *q;
546
547     bits--;
548     BN_CTX_start(ctx);
549     t1 = BN_CTX_get(ctx);
550     q = BN_CTX_get(ctx);
551     qadd = BN_CTX_get(ctx);
552     if (qadd == NULL)
553         goto err;
554
555     if (!BN_rshift1(qadd, padd))
556         goto err;
557
558     if (!BN_rand(q, bits, 0, 1))
559         goto err;
560
561     /* we need ((rnd-rem) % add) == 0 */
562     if (!BN_mod(t1, q, qadd, ctx))
563         goto err;
564     if (!BN_sub(q, q, t1))
565         goto err;
566     if (rem == NULL) {
567         if (!BN_add_word(q, 1))
568             goto err;
569     } else {
570         if (!BN_rshift1(t1, rem))
571             goto err;
572         if (!BN_add(q, q, t1))
573             goto err;
574     }
575
576     /* we now have a random number 'rand' to test. */
577     if (!BN_lshift1(p, q))
578         goto err;
579     if (!BN_add_word(p, 1))
580         goto err;
581
582  loop:
583     for (i = 1; i < NUMPRIMES; i++) {
584         /* check that p and q are prime */
585         /*
586          * check that for p and q gcd(p-1,primes) == 1 (except for 2)
587          */
588         BN_ULONG pmod = BN_mod_word(p, (BN_ULONG)primes[i]);
589         BN_ULONG qmod = BN_mod_word(q, (BN_ULONG)primes[i]);
590         if (pmod == (BN_ULONG)-1 || qmod == (BN_ULONG)-1)
591             goto err;
592         if (pmod == 0 || qmod == 0) {
593             if (!BN_add(p, p, padd))
594                 goto err;
595             if (!BN_add(q, q, qadd))
596                 goto err;
597             goto loop;
598         }
599     }
600     ret = 1;
601
602  err:
603     BN_CTX_end(ctx);
604     bn_check_top(p);
605     return (ret);
606 }