Home | History | Annotate | Line # | Download | only in dist
moduli.c revision 1.6
      1  1.6  christos /*	$NetBSD: moduli.c,v 1.6 2013/11/08 19:18:25 christos Exp $	*/
      2  1.6  christos /* $OpenBSD: moduli.c,v 1.27 2013/05/17 00:13:13 djm Exp $ */
      3  1.1  christos /*
      4  1.1  christos  * Copyright 1994 Phil Karn <karn (at) qualcomm.com>
      5  1.1  christos  * Copyright 1996-1998, 2003 William Allen Simpson <wsimpson (at) greendragon.com>
      6  1.1  christos  * Copyright 2000 Niels Provos <provos (at) citi.umich.edu>
      7  1.1  christos  * All rights reserved.
      8  1.1  christos  *
      9  1.1  christos  * Redistribution and use in source and binary forms, with or without
     10  1.1  christos  * modification, are permitted provided that the following conditions
     11  1.1  christos  * are met:
     12  1.1  christos  * 1. Redistributions of source code must retain the above copyright
     13  1.1  christos  *    notice, this list of conditions and the following disclaimer.
     14  1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     15  1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     16  1.1  christos  *    documentation and/or other materials provided with the distribution.
     17  1.1  christos  *
     18  1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     19  1.1  christos  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     20  1.1  christos  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     21  1.1  christos  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     22  1.1  christos  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     23  1.1  christos  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     24  1.1  christos  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     25  1.1  christos  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     26  1.1  christos  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     27  1.1  christos  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     28  1.1  christos  */
     29  1.1  christos 
     30  1.1  christos /*
     31  1.1  christos  * Two-step process to generate safe primes for DHGEX
     32  1.1  christos  *
     33  1.1  christos  *  Sieve candidates for "safe" primes,
     34  1.1  christos  *  suitable for use as Diffie-Hellman moduli;
     35  1.1  christos  *  that is, where q = (p-1)/2 is also prime.
     36  1.1  christos  *
     37  1.1  christos  * First step: generate candidate primes (memory intensive)
     38  1.1  christos  * Second step: test primes' safety (processor intensive)
     39  1.1  christos  */
     40  1.2  christos #include "includes.h"
     41  1.6  christos __RCSID("$NetBSD: moduli.c,v 1.6 2013/11/08 19:18:25 christos Exp $");
     42  1.1  christos 
     43  1.4  christos #include <sys/param.h>
     44  1.1  christos #include <sys/types.h>
     45  1.1  christos 
     46  1.1  christos #include <openssl/bn.h>
     47  1.1  christos #include <openssl/dh.h>
     48  1.1  christos 
     49  1.4  christos #include <errno.h>
     50  1.1  christos #include <stdio.h>
     51  1.1  christos #include <stdlib.h>
     52  1.1  christos #include <string.h>
     53  1.1  christos #include <stdarg.h>
     54  1.1  christos #include <time.h>
     55  1.4  christos #include <unistd.h>
     56  1.1  christos 
     57  1.1  christos #include "xmalloc.h"
     58  1.1  christos #include "dh.h"
     59  1.1  christos #include "log.h"
     60  1.1  christos 
     61  1.1  christos /*
     62  1.1  christos  * File output defines
     63  1.1  christos  */
     64  1.1  christos 
     65  1.1  christos /* need line long enough for largest moduli plus headers */
     66  1.1  christos #define QLINESIZE		(100+8192)
     67  1.1  christos 
     68  1.1  christos /*
     69  1.1  christos  * Size: decimal.
     70  1.1  christos  * Specifies the number of the most significant bit (0 to M).
     71  1.1  christos  * WARNING: internally, usually 1 to N.
     72  1.1  christos  */
     73  1.1  christos #define QSIZE_MINIMUM		(511)
     74  1.1  christos 
     75  1.1  christos /*
     76  1.1  christos  * Prime sieving defines
     77  1.1  christos  */
     78  1.1  christos 
     79  1.1  christos /* Constant: assuming 8 bit bytes and 32 bit words */
     80  1.1  christos #define SHIFT_BIT	(3)
     81  1.1  christos #define SHIFT_BYTE	(2)
     82  1.1  christos #define SHIFT_WORD	(SHIFT_BIT+SHIFT_BYTE)
     83  1.1  christos #define SHIFT_MEGABYTE	(20)
     84  1.1  christos #define SHIFT_MEGAWORD	(SHIFT_MEGABYTE-SHIFT_BYTE)
     85  1.1  christos 
     86  1.1  christos /*
     87  1.1  christos  * Using virtual memory can cause thrashing.  This should be the largest
     88  1.1  christos  * number that is supported without a large amount of disk activity --
     89  1.1  christos  * that would increase the run time from hours to days or weeks!
     90  1.1  christos  */
     91  1.1  christos #define LARGE_MINIMUM	(8UL)	/* megabytes */
     92  1.1  christos 
     93  1.1  christos /*
     94  1.1  christos  * Do not increase this number beyond the unsigned integer bit size.
     95  1.1  christos  * Due to a multiple of 4, it must be LESS than 128 (yielding 2**30 bits).
     96  1.1  christos  */
     97  1.1  christos #define LARGE_MAXIMUM	(127UL)	/* megabytes */
     98  1.1  christos 
     99  1.1  christos /*
    100  1.1  christos  * Constant: when used with 32-bit integers, the largest sieve prime
    101  1.1  christos  * has to be less than 2**32.
    102  1.1  christos  */
    103  1.1  christos #define SMALL_MAXIMUM	(0xffffffffUL)
    104  1.1  christos 
    105  1.1  christos /* Constant: can sieve all primes less than 2**32, as 65537**2 > 2**32-1. */
    106  1.1  christos #define TINY_NUMBER	(1UL<<16)
    107  1.1  christos 
    108  1.1  christos /* Ensure enough bit space for testing 2*q. */
    109  1.1  christos #define TEST_MAXIMUM	(1UL<<16)
    110  1.1  christos #define TEST_MINIMUM	(QSIZE_MINIMUM + 1)
    111  1.1  christos /* real TEST_MINIMUM	(1UL << (SHIFT_WORD - TEST_POWER)) */
    112  1.1  christos #define TEST_POWER	(3)	/* 2**n, n < SHIFT_WORD */
    113  1.1  christos 
    114  1.1  christos /* bit operations on 32-bit words */
    115  1.1  christos #define BIT_CLEAR(a,n)	((a)[(n)>>SHIFT_WORD] &= ~(1L << ((n) & 31)))
    116  1.1  christos #define BIT_SET(a,n)	((a)[(n)>>SHIFT_WORD] |= (1L << ((n) & 31)))
    117  1.1  christos #define BIT_TEST(a,n)	((a)[(n)>>SHIFT_WORD] & (1L << ((n) & 31)))
    118  1.1  christos 
    119  1.1  christos /*
    120  1.1  christos  * Prime testing defines
    121  1.1  christos  */
    122  1.1  christos 
    123  1.1  christos /* Minimum number of primality tests to perform */
    124  1.1  christos #define TRIAL_MINIMUM	(4)
    125  1.1  christos 
    126  1.1  christos /*
    127  1.1  christos  * Sieving data (XXX - move to struct)
    128  1.1  christos  */
    129  1.1  christos 
    130  1.1  christos /* sieve 2**16 */
    131  1.1  christos static u_int32_t *TinySieve, tinybits;
    132  1.1  christos 
    133  1.1  christos /* sieve 2**30 in 2**16 parts */
    134  1.1  christos static u_int32_t *SmallSieve, smallbits, smallbase;
    135  1.1  christos 
    136  1.1  christos /* sieve relative to the initial value */
    137  1.1  christos static u_int32_t *LargeSieve, largewords, largetries, largenumbers;
    138  1.1  christos static u_int32_t largebits, largememory;	/* megabytes */
    139  1.1  christos static BIGNUM *largebase;
    140  1.1  christos 
    141  1.1  christos int gen_candidates(FILE *, u_int32_t, u_int32_t, BIGNUM *);
    142  1.5  christos int prime_test(FILE *, FILE *, u_int32_t, u_int32_t, char *, unsigned long,
    143  1.5  christos     unsigned long);
    144  1.1  christos 
    145  1.1  christos /*
    146  1.1  christos  * print moduli out in consistent form,
    147  1.1  christos  */
    148  1.1  christos static int
    149  1.1  christos qfileout(FILE * ofile, u_int32_t otype, u_int32_t otests, u_int32_t otries,
    150  1.1  christos     u_int32_t osize, u_int32_t ogenerator, BIGNUM * omodulus)
    151  1.1  christos {
    152  1.1  christos 	struct tm *gtm;
    153  1.1  christos 	time_t time_now;
    154  1.1  christos 	int res;
    155  1.1  christos 
    156  1.1  christos 	time(&time_now);
    157  1.1  christos 	gtm = gmtime(&time_now);
    158  1.1  christos 
    159  1.1  christos 	res = fprintf(ofile, "%04d%02d%02d%02d%02d%02d %u %u %u %u %x ",
    160  1.1  christos 	    gtm->tm_year + 1900, gtm->tm_mon + 1, gtm->tm_mday,
    161  1.1  christos 	    gtm->tm_hour, gtm->tm_min, gtm->tm_sec,
    162  1.1  christos 	    otype, otests, otries, osize, ogenerator);
    163  1.1  christos 
    164  1.1  christos 	if (res < 0)
    165  1.1  christos 		return (-1);
    166  1.1  christos 
    167  1.1  christos 	if (BN_print_fp(ofile, omodulus) < 1)
    168  1.1  christos 		return (-1);
    169  1.1  christos 
    170  1.1  christos 	res = fprintf(ofile, "\n");
    171  1.1  christos 	fflush(ofile);
    172  1.1  christos 
    173  1.1  christos 	return (res > 0 ? 0 : -1);
    174  1.1  christos }
    175  1.1  christos 
    176  1.1  christos 
    177  1.1  christos /*
    178  1.1  christos  ** Sieve p's and q's with small factors
    179  1.1  christos  */
    180  1.1  christos static void
    181  1.1  christos sieve_large(u_int32_t s)
    182  1.1  christos {
    183  1.1  christos 	u_int32_t r, u;
    184  1.1  christos 
    185  1.1  christos 	debug3("sieve_large %u", s);
    186  1.1  christos 	largetries++;
    187  1.1  christos 	/* r = largebase mod s */
    188  1.1  christos 	r = BN_mod_word(largebase, s);
    189  1.1  christos 	if (r == 0)
    190  1.1  christos 		u = 0; /* s divides into largebase exactly */
    191  1.1  christos 	else
    192  1.1  christos 		u = s - r; /* largebase+u is first entry divisible by s */
    193  1.1  christos 
    194  1.1  christos 	if (u < largebits * 2) {
    195  1.1  christos 		/*
    196  1.1  christos 		 * The sieve omits p's and q's divisible by 2, so ensure that
    197  1.1  christos 		 * largebase+u is odd. Then, step through the sieve in
    198  1.1  christos 		 * increments of 2*s
    199  1.1  christos 		 */
    200  1.1  christos 		if (u & 0x1)
    201  1.1  christos 			u += s; /* Make largebase+u odd, and u even */
    202  1.1  christos 
    203  1.1  christos 		/* Mark all multiples of 2*s */
    204  1.1  christos 		for (u /= 2; u < largebits; u += s)
    205  1.1  christos 			BIT_SET(LargeSieve, u);
    206  1.1  christos 	}
    207  1.1  christos 
    208  1.1  christos 	/* r = p mod s */
    209  1.1  christos 	r = (2 * r + 1) % s;
    210  1.1  christos 	if (r == 0)
    211  1.1  christos 		u = 0; /* s divides p exactly */
    212  1.1  christos 	else
    213  1.1  christos 		u = s - r; /* p+u is first entry divisible by s */
    214  1.1  christos 
    215  1.1  christos 	if (u < largebits * 4) {
    216  1.1  christos 		/*
    217  1.1  christos 		 * The sieve omits p's divisible by 4, so ensure that
    218  1.1  christos 		 * largebase+u is not. Then, step through the sieve in
    219  1.1  christos 		 * increments of 4*s
    220  1.1  christos 		 */
    221  1.1  christos 		while (u & 0x3) {
    222  1.1  christos 			if (SMALL_MAXIMUM - u < s)
    223  1.1  christos 				return;
    224  1.1  christos 			u += s;
    225  1.1  christos 		}
    226  1.1  christos 
    227  1.1  christos 		/* Mark all multiples of 4*s */
    228  1.1  christos 		for (u /= 4; u < largebits; u += s)
    229  1.1  christos 			BIT_SET(LargeSieve, u);
    230  1.1  christos 	}
    231  1.1  christos }
    232  1.1  christos 
    233  1.1  christos /*
    234  1.1  christos  * list candidates for Sophie-Germain primes (where q = (p-1)/2)
    235  1.1  christos  * to standard output.
    236  1.1  christos  * The list is checked against small known primes (less than 2**30).
    237  1.1  christos  */
    238  1.1  christos int
    239  1.1  christos gen_candidates(FILE *out, u_int32_t memory, u_int32_t power, BIGNUM *start)
    240  1.1  christos {
    241  1.1  christos 	BIGNUM *q;
    242  1.1  christos 	u_int32_t j, r, s, t;
    243  1.1  christos 	u_int32_t smallwords = TINY_NUMBER >> 6;
    244  1.1  christos 	u_int32_t tinywords = TINY_NUMBER >> 6;
    245  1.1  christos 	time_t time_start, time_stop;
    246  1.1  christos 	u_int32_t i;
    247  1.1  christos 	int ret = 0;
    248  1.1  christos 
    249  1.1  christos 	largememory = memory;
    250  1.1  christos 
    251  1.1  christos 	if (memory != 0 &&
    252  1.1  christos 	    (memory < LARGE_MINIMUM || memory > LARGE_MAXIMUM)) {
    253  1.1  christos 		error("Invalid memory amount (min %ld, max %ld)",
    254  1.1  christos 		    LARGE_MINIMUM, LARGE_MAXIMUM);
    255  1.1  christos 		return (-1);
    256  1.1  christos 	}
    257  1.1  christos 
    258  1.1  christos 	/*
    259  1.1  christos 	 * Set power to the length in bits of the prime to be generated.
    260  1.1  christos 	 * This is changed to 1 less than the desired safe prime moduli p.
    261  1.1  christos 	 */
    262  1.1  christos 	if (power > TEST_MAXIMUM) {
    263  1.1  christos 		error("Too many bits: %u > %lu", power, TEST_MAXIMUM);
    264  1.1  christos 		return (-1);
    265  1.1  christos 	} else if (power < TEST_MINIMUM) {
    266  1.1  christos 		error("Too few bits: %u < %u", power, TEST_MINIMUM);
    267  1.1  christos 		return (-1);
    268  1.1  christos 	}
    269  1.1  christos 	power--; /* decrement before squaring */
    270  1.1  christos 
    271  1.1  christos 	/*
    272  1.1  christos 	 * The density of ordinary primes is on the order of 1/bits, so the
    273  1.1  christos 	 * density of safe primes should be about (1/bits)**2. Set test range
    274  1.1  christos 	 * to something well above bits**2 to be reasonably sure (but not
    275  1.1  christos 	 * guaranteed) of catching at least one safe prime.
    276  1.1  christos 	 */
    277  1.1  christos 	largewords = ((power * power) >> (SHIFT_WORD - TEST_POWER));
    278  1.1  christos 
    279  1.1  christos 	/*
    280  1.1  christos 	 * Need idea of how much memory is available. We don't have to use all
    281  1.1  christos 	 * of it.
    282  1.1  christos 	 */
    283  1.1  christos 	if (largememory > LARGE_MAXIMUM) {
    284  1.1  christos 		logit("Limited memory: %u MB; limit %lu MB",
    285  1.1  christos 		    largememory, LARGE_MAXIMUM);
    286  1.1  christos 		largememory = LARGE_MAXIMUM;
    287  1.1  christos 	}
    288  1.1  christos 
    289  1.1  christos 	if (largewords <= (largememory << SHIFT_MEGAWORD)) {
    290  1.1  christos 		logit("Increased memory: %u MB; need %u bytes",
    291  1.1  christos 		    largememory, (largewords << SHIFT_BYTE));
    292  1.1  christos 		largewords = (largememory << SHIFT_MEGAWORD);
    293  1.1  christos 	} else if (largememory > 0) {
    294  1.1  christos 		logit("Decreased memory: %u MB; want %u bytes",
    295  1.1  christos 		    largememory, (largewords << SHIFT_BYTE));
    296  1.1  christos 		largewords = (largememory << SHIFT_MEGAWORD);
    297  1.1  christos 	}
    298  1.1  christos 
    299  1.1  christos 	TinySieve = xcalloc(tinywords, sizeof(u_int32_t));
    300  1.1  christos 	tinybits = tinywords << SHIFT_WORD;
    301  1.1  christos 
    302  1.1  christos 	SmallSieve = xcalloc(smallwords, sizeof(u_int32_t));
    303  1.1  christos 	smallbits = smallwords << SHIFT_WORD;
    304  1.1  christos 
    305  1.1  christos 	/*
    306  1.1  christos 	 * dynamically determine available memory
    307  1.1  christos 	 */
    308  1.1  christos 	while ((LargeSieve = calloc(largewords, sizeof(u_int32_t))) == NULL)
    309  1.1  christos 		largewords -= (1L << (SHIFT_MEGAWORD - 2)); /* 1/4 MB chunks */
    310  1.1  christos 
    311  1.1  christos 	largebits = largewords << SHIFT_WORD;
    312  1.1  christos 	largenumbers = largebits * 2;	/* even numbers excluded */
    313  1.1  christos 
    314  1.1  christos 	/* validation check: count the number of primes tried */
    315  1.1  christos 	largetries = 0;
    316  1.1  christos 	if ((q = BN_new()) == NULL)
    317  1.1  christos 		fatal("BN_new failed");
    318  1.1  christos 
    319  1.1  christos 	/*
    320  1.1  christos 	 * Generate random starting point for subprime search, or use
    321  1.1  christos 	 * specified parameter.
    322  1.1  christos 	 */
    323  1.1  christos 	if ((largebase = BN_new()) == NULL)
    324  1.1  christos 		fatal("BN_new failed");
    325  1.1  christos 	if (start == NULL) {
    326  1.1  christos 		if (BN_rand(largebase, power, 1, 1) == 0)
    327  1.1  christos 			fatal("BN_rand failed");
    328  1.1  christos 	} else {
    329  1.1  christos 		if (BN_copy(largebase, start) == NULL)
    330  1.1  christos 			fatal("BN_copy: failed");
    331  1.1  christos 	}
    332  1.1  christos 
    333  1.1  christos 	/* ensure odd */
    334  1.1  christos 	if (BN_set_bit(largebase, 0) == 0)
    335  1.1  christos 		fatal("BN_set_bit: failed");
    336  1.1  christos 
    337  1.1  christos 	time(&time_start);
    338  1.1  christos 
    339  1.1  christos 	logit("%.24s Sieve next %u plus %u-bit", ctime(&time_start),
    340  1.1  christos 	    largenumbers, power);
    341  1.1  christos 	debug2("start point: 0x%s", BN_bn2hex(largebase));
    342  1.1  christos 
    343  1.1  christos 	/*
    344  1.1  christos 	 * TinySieve
    345  1.1  christos 	 */
    346  1.1  christos 	for (i = 0; i < tinybits; i++) {
    347  1.1  christos 		if (BIT_TEST(TinySieve, i))
    348  1.1  christos 			continue; /* 2*i+3 is composite */
    349  1.1  christos 
    350  1.1  christos 		/* The next tiny prime */
    351  1.1  christos 		t = 2 * i + 3;
    352  1.1  christos 
    353  1.1  christos 		/* Mark all multiples of t */
    354  1.1  christos 		for (j = i + t; j < tinybits; j += t)
    355  1.1  christos 			BIT_SET(TinySieve, j);
    356  1.1  christos 
    357  1.1  christos 		sieve_large(t);
    358  1.1  christos 	}
    359  1.1  christos 
    360  1.1  christos 	/*
    361  1.1  christos 	 * Start the small block search at the next possible prime. To avoid
    362  1.1  christos 	 * fencepost errors, the last pass is skipped.
    363  1.1  christos 	 */
    364  1.1  christos 	for (smallbase = TINY_NUMBER + 3;
    365  1.1  christos 	    smallbase < (SMALL_MAXIMUM - TINY_NUMBER);
    366  1.1  christos 	    smallbase += TINY_NUMBER) {
    367  1.1  christos 		for (i = 0; i < tinybits; i++) {
    368  1.1  christos 			if (BIT_TEST(TinySieve, i))
    369  1.1  christos 				continue; /* 2*i+3 is composite */
    370  1.1  christos 
    371  1.1  christos 			/* The next tiny prime */
    372  1.1  christos 			t = 2 * i + 3;
    373  1.1  christos 			r = smallbase % t;
    374  1.1  christos 
    375  1.1  christos 			if (r == 0) {
    376  1.1  christos 				s = 0; /* t divides into smallbase exactly */
    377  1.1  christos 			} else {
    378  1.1  christos 				/* smallbase+s is first entry divisible by t */
    379  1.1  christos 				s = t - r;
    380  1.1  christos 			}
    381  1.1  christos 
    382  1.1  christos 			/*
    383  1.1  christos 			 * The sieve omits even numbers, so ensure that
    384  1.1  christos 			 * smallbase+s is odd. Then, step through the sieve
    385  1.1  christos 			 * in increments of 2*t
    386  1.1  christos 			 */
    387  1.1  christos 			if (s & 1)
    388  1.1  christos 				s += t; /* Make smallbase+s odd, and s even */
    389  1.1  christos 
    390  1.1  christos 			/* Mark all multiples of 2*t */
    391  1.1  christos 			for (s /= 2; s < smallbits; s += t)
    392  1.1  christos 				BIT_SET(SmallSieve, s);
    393  1.1  christos 		}
    394  1.1  christos 
    395  1.1  christos 		/*
    396  1.1  christos 		 * SmallSieve
    397  1.1  christos 		 */
    398  1.1  christos 		for (i = 0; i < smallbits; i++) {
    399  1.1  christos 			if (BIT_TEST(SmallSieve, i))
    400  1.1  christos 				continue; /* 2*i+smallbase is composite */
    401  1.1  christos 
    402  1.1  christos 			/* The next small prime */
    403  1.1  christos 			sieve_large((2 * i) + smallbase);
    404  1.1  christos 		}
    405  1.1  christos 
    406  1.1  christos 		memset(SmallSieve, 0, smallwords << SHIFT_BYTE);
    407  1.1  christos 	}
    408  1.1  christos 
    409  1.1  christos 	time(&time_stop);
    410  1.1  christos 
    411  1.1  christos 	logit("%.24s Sieved with %u small primes in %ld seconds",
    412  1.1  christos 	    ctime(&time_stop), largetries, (long) (time_stop - time_start));
    413  1.1  christos 
    414  1.1  christos 	for (j = r = 0; j < largebits; j++) {
    415  1.1  christos 		if (BIT_TEST(LargeSieve, j))
    416  1.1  christos 			continue; /* Definitely composite, skip */
    417  1.1  christos 
    418  1.1  christos 		debug2("test q = largebase+%u", 2 * j);
    419  1.1  christos 		if (BN_set_word(q, 2 * j) == 0)
    420  1.1  christos 			fatal("BN_set_word failed");
    421  1.1  christos 		if (BN_add(q, q, largebase) == 0)
    422  1.1  christos 			fatal("BN_add failed");
    423  1.1  christos 		if (qfileout(out, MODULI_TYPE_SOPHIE_GERMAIN,
    424  1.1  christos 		    MODULI_TESTS_SIEVE, largetries,
    425  1.1  christos 		    (power - 1) /* MSB */, (0), q) == -1) {
    426  1.1  christos 			ret = -1;
    427  1.1  christos 			break;
    428  1.1  christos 		}
    429  1.1  christos 
    430  1.1  christos 		r++; /* count q */
    431  1.1  christos 	}
    432  1.1  christos 
    433  1.1  christos 	time(&time_stop);
    434  1.1  christos 
    435  1.6  christos 	free(LargeSieve);
    436  1.6  christos 	free(SmallSieve);
    437  1.6  christos 	free(TinySieve);
    438  1.1  christos 
    439  1.1  christos 	logit("%.24s Found %u candidates", ctime(&time_stop), r);
    440  1.1  christos 
    441  1.1  christos 	return (ret);
    442  1.1  christos }
    443  1.1  christos 
    444  1.4  christos static void
    445  1.4  christos write_checkpoint(char *cpfile, u_int32_t lineno)
    446  1.4  christos {
    447  1.4  christos 	FILE *fp;
    448  1.4  christos 	char tmp[MAXPATHLEN];
    449  1.4  christos 	int r;
    450  1.4  christos 
    451  1.4  christos 	r = snprintf(tmp, sizeof(tmp), "%s.XXXXXXXXXX", cpfile);
    452  1.4  christos 	if (r == -1 || r >= MAXPATHLEN) {
    453  1.4  christos 		logit("write_checkpoint: temp pathname too long");
    454  1.4  christos 		return;
    455  1.4  christos 	}
    456  1.4  christos 	if ((r = mkstemp(tmp)) == -1) {
    457  1.4  christos 		logit("mkstemp(%s): %s", tmp, strerror(errno));
    458  1.4  christos 		return;
    459  1.4  christos 	}
    460  1.4  christos 	if ((fp = fdopen(r, "w")) == NULL) {
    461  1.4  christos 		logit("write_checkpoint: fdopen: %s", strerror(errno));
    462  1.4  christos 		close(r);
    463  1.4  christos 		return;
    464  1.4  christos 	}
    465  1.4  christos 	if (fprintf(fp, "%lu\n", (unsigned long)lineno) > 0 && fclose(fp) == 0
    466  1.4  christos 	    && rename(tmp, cpfile) == 0)
    467  1.4  christos 		debug3("wrote checkpoint line %lu to '%s'",
    468  1.4  christos 		    (unsigned long)lineno, cpfile);
    469  1.4  christos 	else
    470  1.4  christos 		logit("failed to write to checkpoint file '%s': %s", cpfile,
    471  1.4  christos 		    strerror(errno));
    472  1.4  christos }
    473  1.4  christos 
    474  1.4  christos static unsigned long
    475  1.4  christos read_checkpoint(char *cpfile)
    476  1.4  christos {
    477  1.4  christos 	FILE *fp;
    478  1.4  christos 	unsigned long lineno = 0;
    479  1.4  christos 
    480  1.4  christos 	if ((fp = fopen(cpfile, "r")) == NULL)
    481  1.4  christos 		return 0;
    482  1.4  christos 	if (fscanf(fp, "%lu\n", &lineno) < 1)
    483  1.4  christos 		logit("Failed to load checkpoint from '%s'", cpfile);
    484  1.4  christos 	else
    485  1.4  christos 		logit("Loaded checkpoint from '%s' line %lu", cpfile, lineno);
    486  1.4  christos 	fclose(fp);
    487  1.4  christos 	return lineno;
    488  1.4  christos }
    489  1.4  christos 
    490  1.1  christos /*
    491  1.1  christos  * perform a Miller-Rabin primality test
    492  1.1  christos  * on the list of candidates
    493  1.1  christos  * (checking both q and p)
    494  1.1  christos  * The result is a list of so-call "safe" primes
    495  1.1  christos  */
    496  1.1  christos int
    497  1.4  christos prime_test(FILE *in, FILE *out, u_int32_t trials, u_int32_t generator_wanted,
    498  1.5  christos     char *checkpoint_file, unsigned long start_lineno, unsigned long num_lines)
    499  1.1  christos {
    500  1.1  christos 	BIGNUM *q, *p, *a;
    501  1.1  christos 	BN_CTX *ctx;
    502  1.1  christos 	char *cp, *lp;
    503  1.1  christos 	u_int32_t count_in = 0, count_out = 0, count_possible = 0;
    504  1.1  christos 	u_int32_t generator_known, in_tests, in_tries, in_type, in_size;
    505  1.5  christos 	unsigned long last_processed = 0, end_lineno;
    506  1.1  christos 	time_t time_start, time_stop;
    507  1.1  christos 	int res;
    508  1.1  christos 
    509  1.1  christos 	if (trials < TRIAL_MINIMUM) {
    510  1.1  christos 		error("Minimum primality trials is %d", TRIAL_MINIMUM);
    511  1.1  christos 		return (-1);
    512  1.1  christos 	}
    513  1.1  christos 
    514  1.1  christos 	time(&time_start);
    515  1.1  christos 
    516  1.1  christos 	if ((p = BN_new()) == NULL)
    517  1.1  christos 		fatal("BN_new failed");
    518  1.1  christos 	if ((q = BN_new()) == NULL)
    519  1.1  christos 		fatal("BN_new failed");
    520  1.1  christos 	if ((ctx = BN_CTX_new()) == NULL)
    521  1.1  christos 		fatal("BN_CTX_new failed");
    522  1.1  christos 
    523  1.1  christos 	debug2("%.24s Final %u Miller-Rabin trials (%x generator)",
    524  1.1  christos 	    ctime(&time_start), trials, generator_wanted);
    525  1.1  christos 
    526  1.4  christos 	if (checkpoint_file != NULL)
    527  1.4  christos 		last_processed = read_checkpoint(checkpoint_file);
    528  1.5  christos 	if (start_lineno > last_processed)
    529  1.5  christos 		last_processed = start_lineno;
    530  1.5  christos 	if (num_lines == 0)
    531  1.5  christos 		end_lineno = ULONG_MAX;
    532  1.5  christos 	else
    533  1.5  christos 		end_lineno = last_processed + num_lines;
    534  1.5  christos 	debug2("process line %lu to line %lu", last_processed, end_lineno);
    535  1.4  christos 
    536  1.1  christos 	res = 0;
    537  1.1  christos 	lp = xmalloc(QLINESIZE + 1);
    538  1.5  christos 	while (fgets(lp, QLINESIZE + 1, in) != NULL && count_in < end_lineno) {
    539  1.1  christos 		count_in++;
    540  1.4  christos 		if (checkpoint_file != NULL) {
    541  1.4  christos 			if (count_in <= last_processed) {
    542  1.4  christos 				debug3("skipping line %u, before checkpoint",
    543  1.4  christos 				    count_in);
    544  1.4  christos 				continue;
    545  1.4  christos 			}
    546  1.4  christos 			write_checkpoint(checkpoint_file, count_in);
    547  1.4  christos 		}
    548  1.1  christos 		if (strlen(lp) < 14 || *lp == '!' || *lp == '#') {
    549  1.1  christos 			debug2("%10u: comment or short line", count_in);
    550  1.1  christos 			continue;
    551  1.1  christos 		}
    552  1.1  christos 
    553  1.1  christos 		/* XXX - fragile parser */
    554  1.1  christos 		/* time */
    555  1.1  christos 		cp = &lp[14];	/* (skip) */
    556  1.1  christos 
    557  1.1  christos 		/* type */
    558  1.1  christos 		in_type = strtoul(cp, &cp, 10);
    559  1.1  christos 
    560  1.1  christos 		/* tests */
    561  1.1  christos 		in_tests = strtoul(cp, &cp, 10);
    562  1.1  christos 
    563  1.1  christos 		if (in_tests & MODULI_TESTS_COMPOSITE) {
    564  1.1  christos 			debug2("%10u: known composite", count_in);
    565  1.1  christos 			continue;
    566  1.1  christos 		}
    567  1.1  christos 
    568  1.1  christos 		/* tries */
    569  1.1  christos 		in_tries = strtoul(cp, &cp, 10);
    570  1.1  christos 
    571  1.1  christos 		/* size (most significant bit) */
    572  1.1  christos 		in_size = strtoul(cp, &cp, 10);
    573  1.1  christos 
    574  1.1  christos 		/* generator (hex) */
    575  1.1  christos 		generator_known = strtoul(cp, &cp, 16);
    576  1.1  christos 
    577  1.1  christos 		/* Skip white space */
    578  1.1  christos 		cp += strspn(cp, " ");
    579  1.1  christos 
    580  1.1  christos 		/* modulus (hex) */
    581  1.1  christos 		switch (in_type) {
    582  1.1  christos 		case MODULI_TYPE_SOPHIE_GERMAIN:
    583  1.1  christos 			debug2("%10u: (%u) Sophie-Germain", count_in, in_type);
    584  1.1  christos 			a = q;
    585  1.1  christos 			if (BN_hex2bn(&a, cp) == 0)
    586  1.1  christos 				fatal("BN_hex2bn failed");
    587  1.1  christos 			/* p = 2*q + 1 */
    588  1.1  christos 			if (BN_lshift(p, q, 1) == 0)
    589  1.1  christos 				fatal("BN_lshift failed");
    590  1.1  christos 			if (BN_add_word(p, 1) == 0)
    591  1.1  christos 				fatal("BN_add_word failed");
    592  1.1  christos 			in_size += 1;
    593  1.1  christos 			generator_known = 0;
    594  1.1  christos 			break;
    595  1.1  christos 		case MODULI_TYPE_UNSTRUCTURED:
    596  1.1  christos 		case MODULI_TYPE_SAFE:
    597  1.1  christos 		case MODULI_TYPE_SCHNORR:
    598  1.1  christos 		case MODULI_TYPE_STRONG:
    599  1.1  christos 		case MODULI_TYPE_UNKNOWN:
    600  1.1  christos 			debug2("%10u: (%u)", count_in, in_type);
    601  1.1  christos 			a = p;
    602  1.1  christos 			if (BN_hex2bn(&a, cp) == 0)
    603  1.1  christos 				fatal("BN_hex2bn failed");
    604  1.1  christos 			/* q = (p-1) / 2 */
    605  1.1  christos 			if (BN_rshift(q, p, 1) == 0)
    606  1.1  christos 				fatal("BN_rshift failed");
    607  1.1  christos 			break;
    608  1.1  christos 		default:
    609  1.1  christos 			debug2("Unknown prime type");
    610  1.1  christos 			break;
    611  1.1  christos 		}
    612  1.1  christos 
    613  1.1  christos 		/*
    614  1.1  christos 		 * due to earlier inconsistencies in interpretation, check
    615  1.1  christos 		 * the proposed bit size.
    616  1.1  christos 		 */
    617  1.1  christos 		if ((u_int32_t)BN_num_bits(p) != (in_size + 1)) {
    618  1.1  christos 			debug2("%10u: bit size %u mismatch", count_in, in_size);
    619  1.1  christos 			continue;
    620  1.1  christos 		}
    621  1.1  christos 		if (in_size < QSIZE_MINIMUM) {
    622  1.1  christos 			debug2("%10u: bit size %u too short", count_in, in_size);
    623  1.1  christos 			continue;
    624  1.1  christos 		}
    625  1.1  christos 
    626  1.1  christos 		if (in_tests & MODULI_TESTS_MILLER_RABIN)
    627  1.1  christos 			in_tries += trials;
    628  1.1  christos 		else
    629  1.1  christos 			in_tries = trials;
    630  1.1  christos 
    631  1.1  christos 		/*
    632  1.1  christos 		 * guess unknown generator
    633  1.1  christos 		 */
    634  1.1  christos 		if (generator_known == 0) {
    635  1.1  christos 			if (BN_mod_word(p, 24) == 11)
    636  1.1  christos 				generator_known = 2;
    637  1.1  christos 			else if (BN_mod_word(p, 12) == 5)
    638  1.1  christos 				generator_known = 3;
    639  1.1  christos 			else {
    640  1.1  christos 				u_int32_t r = BN_mod_word(p, 10);
    641  1.1  christos 
    642  1.1  christos 				if (r == 3 || r == 7)
    643  1.1  christos 					generator_known = 5;
    644  1.1  christos 			}
    645  1.1  christos 		}
    646  1.1  christos 		/*
    647  1.1  christos 		 * skip tests when desired generator doesn't match
    648  1.1  christos 		 */
    649  1.1  christos 		if (generator_wanted > 0 &&
    650  1.1  christos 		    generator_wanted != generator_known) {
    651  1.1  christos 			debug2("%10u: generator %d != %d",
    652  1.1  christos 			    count_in, generator_known, generator_wanted);
    653  1.1  christos 			continue;
    654  1.1  christos 		}
    655  1.1  christos 
    656  1.1  christos 		/*
    657  1.1  christos 		 * Primes with no known generator are useless for DH, so
    658  1.1  christos 		 * skip those.
    659  1.1  christos 		 */
    660  1.1  christos 		if (generator_known == 0) {
    661  1.1  christos 			debug2("%10u: no known generator", count_in);
    662  1.1  christos 			continue;
    663  1.1  christos 		}
    664  1.1  christos 
    665  1.1  christos 		count_possible++;
    666  1.1  christos 
    667  1.1  christos 		/*
    668  1.1  christos 		 * The (1/4)^N performance bound on Miller-Rabin is
    669  1.1  christos 		 * extremely pessimistic, so don't spend a lot of time
    670  1.1  christos 		 * really verifying that q is prime until after we know
    671  1.1  christos 		 * that p is also prime. A single pass will weed out the
    672  1.1  christos 		 * vast majority of composite q's.
    673  1.1  christos 		 */
    674  1.3  christos 		if (BN_is_prime_ex(q, 1, ctx, NULL) <= 0) {
    675  1.1  christos 			debug("%10u: q failed first possible prime test",
    676  1.1  christos 			    count_in);
    677  1.1  christos 			continue;
    678  1.1  christos 		}
    679  1.1  christos 
    680  1.1  christos 		/*
    681  1.1  christos 		 * q is possibly prime, so go ahead and really make sure
    682  1.1  christos 		 * that p is prime. If it is, then we can go back and do
    683  1.1  christos 		 * the same for q. If p is composite, chances are that
    684  1.1  christos 		 * will show up on the first Rabin-Miller iteration so it
    685  1.1  christos 		 * doesn't hurt to specify a high iteration count.
    686  1.1  christos 		 */
    687  1.3  christos 		if (!BN_is_prime_ex(p, trials, ctx, NULL)) {
    688  1.1  christos 			debug("%10u: p is not prime", count_in);
    689  1.1  christos 			continue;
    690  1.1  christos 		}
    691  1.1  christos 		debug("%10u: p is almost certainly prime", count_in);
    692  1.1  christos 
    693  1.1  christos 		/* recheck q more rigorously */
    694  1.3  christos 		if (!BN_is_prime_ex(q, trials - 1, ctx, NULL)) {
    695  1.1  christos 			debug("%10u: q is not prime", count_in);
    696  1.1  christos 			continue;
    697  1.1  christos 		}
    698  1.1  christos 		debug("%10u: q is almost certainly prime", count_in);
    699  1.1  christos 
    700  1.1  christos 		if (qfileout(out, MODULI_TYPE_SAFE,
    701  1.1  christos 		    in_tests | MODULI_TESTS_MILLER_RABIN,
    702  1.1  christos 		    in_tries, in_size, generator_known, p)) {
    703  1.1  christos 			res = -1;
    704  1.1  christos 			break;
    705  1.1  christos 		}
    706  1.1  christos 
    707  1.1  christos 		count_out++;
    708  1.1  christos 	}
    709  1.1  christos 
    710  1.1  christos 	time(&time_stop);
    711  1.6  christos 	free(lp);
    712  1.1  christos 	BN_free(p);
    713  1.1  christos 	BN_free(q);
    714  1.1  christos 	BN_CTX_free(ctx);
    715  1.1  christos 
    716  1.4  christos 	if (checkpoint_file != NULL)
    717  1.4  christos 		unlink(checkpoint_file);
    718  1.4  christos 
    719  1.1  christos 	logit("%.24s Found %u safe primes of %u candidates in %ld seconds",
    720  1.1  christos 	    ctime(&time_stop), count_out, count_possible,
    721  1.1  christos 	    (long) (time_stop - time_start));
    722  1.1  christos 
    723  1.1  christos 	return (res);
    724  1.1  christos }
    725