/* Miscellaneous test program support routines. Copyright 2000, 2001, 2002 Free Software Foundation, Inc. This file is part of the GNU MP Library. The GNU MP Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU MP Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU MP Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "config.h" #include #include #include /* for getenv */ #include #if TIME_WITH_SYS_TIME # include /* for struct timeval */ # include #else # if HAVE_SYS_TIME_H # include # else # include # endif #endif #include "gmp.h" #include "gmp-impl.h" #include "tests.h" /* The various tests setups and final checks, collected up together. */ void tests_start (void) { tests_memory_start (); tests_rand_start (); } void tests_end (void) { tests_rand_end (); tests_memory_end (); } void tests_rand_start (void) { gmp_randstate_ptr rands; char *perform_seed; unsigned long seed; if (__gmp_rands_initialized) { printf ("Please let tests_start() initialize the global __gmp_rands.\n"); printf ("ie. ensure that function is called before the first use of RANDS.\n"); abort (); } rands = RANDS; perform_seed = getenv ("GMP_CHECK_RANDOMIZE"); if (perform_seed != NULL) { seed = atoi (perform_seed); if (! (seed == 0 || seed == 1)) { printf ("Re-seeding with GMP_CHECK_RANDOMIZE=%lu\n", seed); gmp_randseed_ui (rands, seed); } else { #if HAVE_GETTIMEOFDAY struct timeval tv; gettimeofday (&tv, NULL); seed = tv.tv_sec + tv.tv_usec; #else time_t tv; time (&tv); seed = tv; #endif gmp_randseed_ui (rands, seed); printf ("Seed GMP_CHECK_RANDOMIZE=%lu (include this in bug reports)\n", seed); } } } void tests_rand_end (void) { RANDS_CLEAR (); } /* Only used if CPU calling conventions checking is available. */ mp_limb_t (*calling_conventions_function) _PROTO ((ANYARGS)); /* Return p advanced to the next multiple of "align" bytes. "align" must be a power of 2. Care is taken not to assume sizeof(int)==sizeof(pointer). Using "unsigned long" avoids a warning on hpux. */ void * align_pointer (void *p, size_t align) { unsigned long d; d = ((unsigned long) p) & (align-1); d = (d != 0 ? align-d : 0); return (void *) (((char *) p) + d); } /* Note that memory allocated with this function can never be freed, because the start address of the block allocated is lost. */ void * __gmp_allocate_func_aligned (size_t bytes, size_t align) { return align_pointer ((*__gmp_allocate_func) (bytes + align-1), align); } void * __gmp_allocate_or_reallocate (void *ptr, size_t oldsize, size_t newsize) { if (ptr == NULL) return (*__gmp_allocate_func) (newsize); else return (*__gmp_reallocate_func) (ptr, oldsize, newsize); } char * __gmp_allocate_strdup (const char *s) { size_t len; char *t; len = strlen (s); t = (*__gmp_allocate_func) (len+1); memcpy (t, s, len+1); return t; } char * strtoupper (char *s_orig) { char *s; for (s = s_orig; *s != '\0'; s++) if (isascii (*s)) *s = toupper (*s); return s_orig; } void mpz_set_n (mpz_ptr z, mp_srcptr p, mp_size_t size) { ASSERT (size >= 0); MPN_NORMALIZE (p, size); MPZ_REALLOC (z, size); MPN_COPY (PTR(z), p, size); SIZ(z) = size; } void mpz_init_set_n (mpz_ptr z, mp_srcptr p, mp_size_t size) { ASSERT (size >= 0); MPN_NORMALIZE (p, size); ALLOC(z) = MAX (size, 1); PTR(z) = __GMP_ALLOCATE_FUNC_LIMBS (ALLOC(z)); SIZ(z) = size; MPN_COPY (PTR(z), p, size); } /* Find least significant limb position where p1,size and p2,size differ. */ mp_size_t mpn_diff_lowest (mp_srcptr p1, mp_srcptr p2, mp_size_t size) { mp_size_t i; for (i = 0; i < size; i++) if (p1[i] != p2[i]) return i; /* no differences */ return -1; } /* Find most significant limb position where p1,size and p2,size differ. */ mp_size_t mpn_diff_highest (mp_srcptr p1, mp_srcptr p2, mp_size_t size) { mp_size_t i; for (i = size-1; i >= 0; i--) if (p1[i] != p2[i]) return i; /* no differences */ return -1; } /* Find least significant byte position where p1,size and p2,size differ. */ mp_size_t byte_diff_lowest (const void *p1, const void *p2, mp_size_t size) { mp_size_t i; for (i = 0; i < size; i++) if (((const char *) p1)[i] != ((const char *) p2)[i]) return i; /* no differences */ return -1; } /* Find most significant limb position where p1,size and p2,size differ. */ mp_size_t byte_diff_highest (const void *p1, const void *p2, mp_size_t size) { mp_size_t i; for (i = size-1; i >= 0; i--) if (((const char *) p1)[i] != ((const char *) p2)[i]) return i; /* no differences */ return -1; } void mpz_set_str_or_abort (mpz_ptr z, const char *str, int base) { if (mpz_set_str (z, str, base) != 0) { fprintf (stderr, "ERROR: mpz_set_str failed\n"); fprintf (stderr, " str = \"%s\"\n", str); fprintf (stderr, " base = %d\n", base); abort(); } } void mpq_set_str_or_abort (mpq_ptr q, const char *str, int base) { if (mpq_set_str (q, str, base) != 0) { fprintf (stderr, "ERROR: mpq_set_str failed\n"); fprintf (stderr, " str = \"%s\"\n", str); fprintf (stderr, " base = %d\n", base); abort(); } } void mpf_set_str_or_abort (mpf_ptr f, const char *str, int base) { if (mpf_set_str (f, str, base) != 0) { fprintf (stderr, "ERROR mpf_set_str failed\n"); fprintf (stderr, " str = \"%s\"\n", str); fprintf (stderr, " base = %d\n", base); abort(); } } /* Whether the absolute value of z is a power of 2. */ int mpz_pow2abs_p (mpz_srcptr z) { mp_size_t size, i; mp_srcptr ptr; size = SIZ (z); if (size == 0) return 0; /* zero is not a power of 2 */ size = ABS (size); ptr = PTR (z); for (i = 0; i < size-1; i++) if (ptr[i] != 0) return 0; /* non-zero low limb means not a power of 2 */ return POW2_P (ptr[i]); /* high limb power of 2 */ } void mpz_flipbit (mpz_ptr r, unsigned long bit) { if (mpz_tstbit (r, bit)) mpz_clrbit (r, bit); else mpz_setbit (r, bit); } /* Exponentially distributed between 0 and 2^nbits-1, meaning the number of bits in the result is uniformly distributed between 0 and nbits-1. FIXME: This is not a proper exponential distribution, since the probability function will have a stepped shape due to using a uniform distribution after choosing how many bits. */ void mpz_erandomb (mpz_ptr rop, gmp_randstate_t rstate, unsigned long nbits) { mpz_urandomb (rop, rstate, urandom () % nbits); } void mpz_erandomb_nonzero (mpz_ptr rop, gmp_randstate_t rstate, unsigned long nbits) { mpz_erandomb (rop, rstate, nbits); if (mpz_sgn (rop) == 0) mpz_set_ui (rop, 1L); } void mpz_errandomb (mpz_ptr rop, gmp_randstate_t rstate, unsigned long nbits) { mpz_rrandomb (rop, rstate, urandom () % nbits); } void mpz_errandomb_nonzero (mpz_ptr rop, gmp_randstate_t rstate, unsigned long nbits) { mpz_errandomb (rop, rstate, nbits); if (mpz_sgn (rop) == 0) mpz_set_ui (rop, 1L); } void mpz_negrandom (mpz_ptr rop, gmp_randstate_t rstate) { mp_limb_t n; _gmp_rand (&n, rstate, 1); if (n != 0) mpz_neg (rop, rop); } mp_limb_t urandom (void) { #if GMP_NAIL_BITS == 0 mp_limb_t n; _gmp_rand (&n, RANDS, BITS_PER_MP_LIMB); return n; #else mp_limb_t n[2]; _gmp_rand (n, RANDS, BITS_PER_MP_LIMB); return n[0] + (n[1] << GMP_NUMB_BITS); #endif }