Blame support/random.c

Packit 575503
/*
Packit 575503
 * Copyright (c) 1983, 1993
Packit 575503
 *	The Regents of the University of California.  All rights reserved.
Packit 575503
 *
Packit 575503
 * Redistribution and use in source and binary forms, with or without
Packit 575503
 * modification, are permitted provided that the following conditions
Packit 575503
 * are met:
Packit 575503
 * 1. Redistributions of source code must retain the above copyright
Packit 575503
 *    notice, this list of conditions and the following disclaimer.
Packit 575503
 * 2. Redistributions in binary form must reproduce the above copyright
Packit 575503
 *    notice, this list of conditions and the following disclaimer in the
Packit 575503
 *    documentation and/or other materials provided with the distribution.
Packit 575503
 * 3. Neither the name of the University nor the names of its contributors
Packit 575503
 *    may be used to endorse or promote products derived from this software
Packit 575503
 *    without specific prior written permission.
Packit 575503
 *
Packit 575503
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
Packit 575503
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit 575503
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Packit 575503
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
Packit 575503
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit 575503
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
Packit 575503
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
Packit 575503
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
Packit 575503
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
Packit 575503
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
Packit 575503
 * SUCH DAMAGE.
Packit 575503
 */
Packit 575503
Packit 575503
/*
Packit 575503
 * Per the statement at http://opensource.org/licenses/bsd-license.php,
Packit 575503
 *
Packit 575503
 *	The advertising clause in the license appearing on BSD Unix files was
Packit 575503
 *	officially rescinded by the Director of the Office of Technology
Packit 575503
 *	Licensing of the University of California on July 22 1999. He states
Packit 575503
 *	that clause 3 is "hereby deleted in its entirety."
Packit 575503
 *
Packit 575503
 * I removed the advertising clause in the above copyright.
Packit 575503
 * The above web site points to
Packit 575503
 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change.
Packit 575503
 *
Packit 575503
 * Arnold Robbins
Packit 575503
 * 15 September 2007
Packit 575503
 */
Packit 575503
Packit 575503
#if defined(LIBC_SCCS) && !defined(lint)
Packit 575503
static const char sccsid[] = "@(#)random.c	8.2 (Berkeley) 5/19/95";
Packit 575503
#endif /* LIBC_SCCS and not lint */
Packit 575503
Packit 575503
#ifdef HAVE_CONFIG_H		/* gawk addition */
Packit 575503
#include <config.h>
Packit 575503
#endif
Packit 575503
Packit 575503
#ifdef HAVE_FCNTL_H
Packit 575503
#include <fcntl.h>
Packit 575503
#endif
Packit 575503
#include <stdio.h>
Packit 575503
#include <stdlib.h>
Packit 575503
#ifdef HAVE_UNISTD_H
Packit 575503
#include <unistd.h>
Packit 575503
#endif
Packit 575503
Packit 575503
#include <assert.h>
Packit 575503
Packit 575503
#include "random.h"		/* gawk addition */
Packit 575503
Packit 575503
#ifdef HAVE_SYS_TIME_H		/* gawk addition */
Packit 575503
#include <sys/time.h>
Packit 575503
#endif
Packit 575503
Packit 575503
#if 0
Packit 575503
#include <sys/cdefs.h>
Packit 575503
__FBSDID("$FreeBSD: /repoman/r/ncvs/src/lib/libc/stdlib/random.c,v 1.24 2004/01/20 03:02:18 das Exp $");
Packit 575503
Packit 575503
#include "namespace.h"
Packit 575503
#include <sys/time.h>          /* for srandomdev() */
Packit 575503
#include <fcntl.h>             /* for srandomdev() */
Packit 575503
#include <stdint.h>
Packit 575503
#include <stdio.h>
Packit 575503
#include <stdlib.h>
Packit 575503
#include <unistd.h>            /* for srandomdev() */
Packit 575503
#include "un-namespace.h"
Packit 575503
#endif
Packit 575503
Packit 575503
/*
Packit 575503
 * random.c:
Packit 575503
 *
Packit 575503
 * An improved random number generation package.  In addition to the standard
Packit 575503
 * rand()/srand() like interface, this package also has a special state info
Packit 575503
 * interface.  The initstate() routine is called with a seed, an array of
Packit 575503
 * bytes, and a count of how many bytes are being passed in; this array is
Packit 575503
 * then initialized to contain information for random number generation with
Packit 575503
 * that much state information.  Good sizes for the amount of state
Packit 575503
 * information are 32, 64, 128, and 256 bytes.  The state can be switched by
Packit 575503
 * calling the setstate() routine with the same array as was initiallized
Packit 575503
 * with initstate().  By default, the package runs with 128 bytes of state
Packit 575503
 * information and generates far better random numbers than a linear
Packit 575503
 * congruential generator.  If the amount of state information is less than
Packit 575503
 * 32 bytes, a simple linear congruential R.N.G. is used.
Packit 575503
 *
Packit 575503
 * Internally, the state information is treated as an array of uint32_t's; the
Packit 575503
 * zeroeth element of the array is the type of R.N.G. being used (small
Packit 575503
 * integer); the remainder of the array is the state information for the
Packit 575503
 * R.N.G.  Thus, 32 bytes of state information will give 7 ints worth of
Packit 575503
 * state information, which will allow a degree seven polynomial.  (Note:
Packit 575503
 * the zeroeth word of state information also has some other information
Packit 575503
 * stored in it -- see setstate() for details).
Packit 575503
 *
Packit 575503
 * The random number generation technique is a linear feedback shift register
Packit 575503
 * approach, employing trinomials (since there are fewer terms to sum up that
Packit 575503
 * way).  In this approach, the least significant bit of all the numbers in
Packit 575503
 * the state table will act as a linear feedback shift register, and will
Packit 575503
 * have period 2^deg - 1 (where deg is the degree of the polynomial being
Packit 575503
 * used, assuming that the polynomial is irreducible and primitive).  The
Packit 575503
 * higher order bits will have longer periods, since their values are also
Packit 575503
 * influenced by pseudo-random carries out of the lower bits.  The total
Packit 575503
 * period of the generator is approximately deg*(2**deg - 1); thus doubling
Packit 575503
 * the amount of state information has a vast influence on the period of the
Packit 575503
 * generator.  Note: the deg*(2**deg - 1) is an approximation only good for
Packit 575503
 * large deg, when the period of the shift is the dominant factor.
Packit 575503
 * With deg equal to seven, the period is actually much longer than the
Packit 575503
 * 7*(2**7 - 1) predicted by this formula.
Packit 575503
 *
Packit 575503
 * Modified 28 December 1994 by Jacob S. Rosenberg.
Packit 575503
 * The following changes have been made:
Packit 575503
 * All references to the type u_int have been changed to unsigned long.
Packit 575503
 * All references to type int have been changed to type long.  Other
Packit 575503
 * cleanups have been made as well.  A warning for both initstate and
Packit 575503
 * setstate has been inserted to the effect that on Sparc platforms
Packit 575503
 * the 'arg_state' variable must be forced to begin on word boundaries.
Packit 575503
 * This can be easily done by casting a long integer array to char *.
Packit 575503
 * The overall logic has been left STRICTLY alone.  This software was
Packit 575503
 * tested on both a VAX and Sun SpacsStation with exactly the same
Packit 575503
 * results.  The new version and the original give IDENTICAL results.
Packit 575503
 * The new version is somewhat faster than the original.  As the
Packit 575503
 * documentation says:  "By default, the package runs with 128 bytes of
Packit 575503
 * state information and generates far better random numbers than a linear
Packit 575503
 * congruential generator.  If the amount of state information is less than
Packit 575503
 * 32 bytes, a simple linear congruential R.N.G. is used."  For a buffer of
Packit 575503
 * 128 bytes, this new version runs about 19 percent faster and for a 16
Packit 575503
 * byte buffer it is about 5 percent faster.
Packit 575503
 *
Packit 575503
 * Modified 06 February 2016 by Nelson H. F. Beebe to interface to a
Packit 575503
 * shuffle buffer, producing a huge period, and removing long-range
Packit 575503
 * correlations of the basic low-level generator.  See comments and
Packit 575503
 * literature references in random() at the end of this file.
Packit 575503
 */
Packit 575503
Packit 575503
#define SHUFFLE_BITS	9			/* see comments in random() below for this choice */
Packit 575503
#define SHUFFLE_MAX	(1 << SHUFFLE_BITS)	/* MUST be power of two */
Packit 575503
#define SHUFFLE_MASK	(SHUFFLE_MAX - 1)	/* (k & SHUFFLE_MASK) is in [0, SHUFFLE_MAX - 1] */
Packit 575503
Packit 575503
static int  shuffle_init = 1;
Packit 575503
static long shuffle_buffer[SHUFFLE_MAX];
Packit 575503
Packit 575503
/*
Packit 575503
 * For each of the currently supported random number generators, we have a
Packit 575503
 * break value on the amount of state information (you need at least this
Packit 575503
 * many bytes of state info to support this random number generator), a degree
Packit 575503
 * for the polynomial (actually a trinomial) that the R.N.G. is based on, and
Packit 575503
 * the separation between the two lower order coefficients of the trinomial.
Packit 575503
 */
Packit 575503
#define	TYPE_0		0		/* linear congruential */
Packit 575503
#define	BREAK_0		8
Packit 575503
#define	DEG_0		0
Packit 575503
#define	SEP_0		0
Packit 575503
Packit 575503
#define	TYPE_1		1		/* x**7 + x**3 + 1 */
Packit 575503
#define	BREAK_1		32
Packit 575503
#define	DEG_1		7
Packit 575503
#define	SEP_1		3
Packit 575503
Packit 575503
#define	TYPE_2		2		/* x**15 + x + 1 */
Packit 575503
#define	BREAK_2		64
Packit 575503
#define	DEG_2		15
Packit 575503
#define	SEP_2		1
Packit 575503
Packit 575503
#define	TYPE_3		3		/* x**31 + x**3 + 1 */
Packit 575503
#define	BREAK_3		128
Packit 575503
#define	DEG_3		31
Packit 575503
#define	SEP_3		3
Packit 575503
Packit 575503
#define	TYPE_4		4		/* x**63 + x + 1 */
Packit 575503
#define	BREAK_4		256
Packit 575503
#define	DEG_4		63
Packit 575503
#define	SEP_4		1
Packit 575503
Packit 575503
/*
Packit 575503
 * Array versions of the above information to make code run faster --
Packit 575503
 * relies on fact that TYPE_i == i.
Packit 575503
 */
Packit 575503
#define	MAX_TYPES	5		/* max number of types above */
Packit 575503
Packit 575503
#ifdef  USE_WEAK_SEEDING
Packit 575503
#define NSHUFF 0
Packit 575503
#else   /* !USE_WEAK_SEEDING */
Packit 575503
#define NSHUFF 50       /* to drop some "seed -> 1st value" linearity */
Packit 575503
#endif  /* !USE_WEAK_SEEDING */
Packit 575503
Packit 575503
static const int degrees[MAX_TYPES] =	{ DEG_0, DEG_1, DEG_2, DEG_3, DEG_4 };
Packit 575503
static const int seps [MAX_TYPES] =	{ SEP_0, SEP_1, SEP_2, SEP_3, SEP_4 };
Packit 575503
Packit 575503
/*
Packit 575503
 * Initially, everything is set up as if from:
Packit 575503
 *
Packit 575503
 *	initstate(1, randtbl, 128);
Packit 575503
 *
Packit 575503
 * Note that this initialization takes advantage of the fact that srandom()
Packit 575503
 * advances the front and rear pointers 10*rand_deg times, and hence the
Packit 575503
 * rear pointer which starts at 0 will also end up at zero; thus the zeroeth
Packit 575503
 * element of the state information, which contains info about the current
Packit 575503
 * position of the rear pointer is just
Packit 575503
 *
Packit 575503
 *	MAX_TYPES * (rptr - state) + TYPE_3 == TYPE_3.
Packit 575503
 */
Packit 575503
Packit 575503
static uint32_t randtbl[DEG_3 + 1] = {
Packit 575503
	TYPE_3,
Packit 575503
#ifdef  USE_WEAK_SEEDING
Packit 575503
/* Historic implementation compatibility */
Packit 575503
/* The random sequences do not vary much with the seed */
Packit 575503
	0x9a319039, 0x32d9c024, 0x9b663182, 0x5da1f342, 0xde3b81e0, 0xdf0a6fb5,
Packit 575503
	0xf103bc02, 0x48f340fb, 0x7449e56b, 0xbeb1dbb0, 0xab5c5918, 0x946554fd,
Packit 575503
	0x8c2e680f, 0xeb3d799f, 0xb11ee0b7, 0x2d436b86, 0xda672e2a, 0x1588ca88,
Packit 575503
	0xe369735d, 0x904f35f7, 0xd7158fd6, 0x6fa6f051, 0x616e6b96, 0xac94efdc,
Packit 575503
	0x36413f93, 0xc622c298, 0xf5a42ab8, 0x8a88d77b, 0xf5ad9d0e, 0x8999220b,
Packit 575503
	0x27fb47b9,
Packit 575503
#else   /* !USE_WEAK_SEEDING */
Packit 575503
	0x991539b1, 0x16a5bce3, 0x6774a4cd, 0x3e01511e, 0x4e508aaa, 0x61048c05,
Packit 575503
	0xf5500617, 0x846b7115, 0x6a19892c, 0x896a97af, 0xdb48f936, 0x14898454,
Packit 575503
	0x37ffd106, 0xb58bff9c, 0x59e17104, 0xcf918a49, 0x09378c83, 0x52c7a471,
Packit 575503
	0x8d293ea9, 0x1f4fc301, 0xc3db71be, 0x39b44e1c, 0xf8a44ef9, 0x4c8b80b1,
Packit 575503
	0x19edc328, 0x87bf4bdd, 0xc9b240e5, 0xe9ee4b1b, 0x4382aee7, 0x535b6b41,
Packit 575503
	0xf3bec5da
Packit 575503
#endif  /* !USE_WEAK_SEEDING */
Packit 575503
};
Packit 575503
Packit 575503
/*
Packit 575503
 * fptr and rptr are two pointers into the state info, a front and a rear
Packit 575503
 * pointer.  These two pointers are always rand_sep places aparts, as they
Packit 575503
 * cycle cyclically through the state information.  (Yes, this does mean we
Packit 575503
 * could get away with just one pointer, but the code for random() is more
Packit 575503
 * efficient this way).  The pointers are left positioned as they would be
Packit 575503
 * from the call
Packit 575503
 *
Packit 575503
 *	initstate(1, randtbl, 128);
Packit 575503
 *
Packit 575503
 * (The position of the rear pointer, rptr, is really 0 (as explained above
Packit 575503
 * in the initialization of randtbl) because the state table pointer is set
Packit 575503
 * to point to randtbl[1] (as explained below).
Packit 575503
 */
Packit 575503
static uint32_t *fptr = &randtbl[SEP_3 + 1];
Packit 575503
static uint32_t *rptr = &randtbl[1];
Packit 575503
Packit 575503
/*
Packit 575503
 * The following things are the pointer to the state information table, the
Packit 575503
 * type of the current generator, the degree of the current polynomial being
Packit 575503
 * used, and the separation between the two pointers.  Note that for efficiency
Packit 575503
 * of random(), we remember the first location of the state information, not
Packit 575503
 * the zeroeth.  Hence it is valid to access state[-1], which is used to
Packit 575503
 * store the type of the R.N.G.  Also, we remember the last location, since
Packit 575503
 * this is more efficient than indexing every time to find the address of
Packit 575503
 * the last element to see if the front and rear pointers have wrapped.
Packit 575503
 */
Packit 575503
static uint32_t *state = &randtbl[1];
Packit 575503
static int rand_type = TYPE_3;
Packit 575503
static int rand_deg = DEG_3;
Packit 575503
static int rand_sep = SEP_3;
Packit 575503
static uint32_t *end_ptr = &randtbl[DEG_3 + 1];
Packit 575503
Packit 575503
static inline uint32_t good_rand(int32_t);
Packit 575503
Packit 575503
static inline uint32_t good_rand (x)
Packit 575503
	int32_t x;
Packit 575503
{
Packit 575503
#ifdef  USE_WEAK_SEEDING
Packit 575503
/*
Packit 575503
 * Historic implementation compatibility.
Packit 575503
 * The random sequences do not vary much with the seed,
Packit 575503
 * even with overflowing.
Packit 575503
 */
Packit 575503
	return (1103515245 * x + 12345);
Packit 575503
#else   /* !USE_WEAK_SEEDING */
Packit 575503
/*
Packit 575503
 * Compute x = (7^5 * x) mod (2^31 - 1)
Packit 575503
 * wihout overflowing 31 bits:
Packit 575503
 *      (2^31 - 1) = 127773 * (7^5) + 2836
Packit 575503
 * From "Random number generators: good ones are hard to find",
Packit 575503
 * Park and Miller, Communications of the ACM, vol. 31, no. 10,
Packit 575503
 * October 1988, p. 1195.
Packit 575503
 */
Packit 575503
	int32_t hi, lo;
Packit 575503
Packit 575503
	/* Can't be initialized with 0, so use another value. */
Packit 575503
	if (x == 0)
Packit 575503
		x = 123459876;
Packit 575503
	hi = x / 127773;
Packit 575503
	lo = x % 127773;
Packit 575503
	x = 16807 * lo - 2836 * hi;
Packit 575503
	if (x < 0)
Packit 575503
		x += 0x7fffffff;
Packit 575503
	return (x);
Packit 575503
#endif  /* !USE_WEAK_SEEDING */
Packit 575503
}
Packit 575503
Packit 575503
/*
Packit 575503
 * srandom:
Packit 575503
 *
Packit 575503
 * Initialize the random number generator based on the given seed.  If the
Packit 575503
 * type is the trivial no-state-information type, just remember the seed.
Packit 575503
 * Otherwise, initializes state[] based on the given "seed" via a linear
Packit 575503
 * congruential generator.  Then, the pointers are set to known locations
Packit 575503
 * that are exactly rand_sep places apart.  Lastly, it cycles the state
Packit 575503
 * information a given number of times to get rid of any initial dependencies
Packit 575503
 * introduced by the L.C.R.N.G.  Note that the initialization of randtbl[]
Packit 575503
 * for default usage relies on values produced by this routine.
Packit 575503
 */
Packit 575503
void
Packit 575503
srandom(x)
Packit 575503
	unsigned long x;
Packit 575503
{
Packit 575503
	int i, lim;
Packit 575503
Packit 575503
	shuffle_init = 1;
Packit 575503
Packit 575503
	state[0] = (uint32_t)x;
Packit 575503
	if (rand_type == TYPE_0)
Packit 575503
		lim = NSHUFF;
Packit 575503
	else {
Packit 575503
		for (i = 1; i < rand_deg; i++)
Packit 575503
			state[i] = good_rand(state[i - 1]);
Packit 575503
		fptr = &state[rand_sep];
Packit 575503
		rptr = &state[0];
Packit 575503
		lim = 10 * rand_deg;
Packit 575503
	}
Packit 575503
	for (i = 0; i < lim; i++)
Packit 575503
		(void)random();
Packit 575503
}
Packit 575503
Packit 575503
#if 0 /* gawk doesn't use this */
Packit 575503
/*
Packit 575503
 * srandomdev:
Packit 575503
 *
Packit 575503
 * Many programs choose the seed value in a totally predictable manner.
Packit 575503
 * This often causes problems.  We seed the generator using the much more
Packit 575503
 * secure random(4) interface.  Note that this particular seeding
Packit 575503
 * procedure can generate states which are impossible to reproduce by
Packit 575503
 * calling srandom() with any value, since the succeeding terms in the
Packit 575503
 * state buffer are no longer derived from the LC algorithm applied to
Packit 575503
 * a fixed seed.
Packit 575503
 */
Packit 575503
void
Packit 575503
srandomdev()
Packit 575503
{
Packit 575503
	int fd, done;
Packit 575503
	size_t len;
Packit 575503
Packit 575503
	if (rand_type == TYPE_0)
Packit 575503
		len = sizeof state[0];
Packit 575503
	else
Packit 575503
		len = rand_deg * sizeof state[0];
Packit 575503
Packit 575503
	done = 0;
Packit 575503
	fd = open("/dev/random", O_RDONLY, 0);
Packit 575503
	if (fd >= 0) {
Packit 575503
		if (read(fd, (void *) state, len) == (ssize_t) len)
Packit 575503
			done = 1;
Packit 575503
		close(fd);
Packit 575503
	}
Packit 575503
Packit 575503
	if (!done) {
Packit 575503
		struct timeval tv;
Packit 575503
		unsigned long junk;
Packit 575503
Packit 575503
		gettimeofday(&tv, NULL);
Packit 575503
		srandom((getpid() << 16) ^ tv.tv_sec ^ tv.tv_usec ^ junk);
Packit 575503
		return;
Packit 575503
	}
Packit 575503
Packit 575503
	if (rand_type != TYPE_0) {
Packit 575503
		fptr = &state[rand_sep];
Packit 575503
		rptr = &state[0];
Packit 575503
	}
Packit 575503
}
Packit 575503
#endif
Packit 575503
Packit 575503
/*
Packit 575503
 * initstate:
Packit 575503
 *
Packit 575503
 * Initialize the state information in the given array of n bytes for future
Packit 575503
 * random number generation.  Based on the number of bytes we are given, and
Packit 575503
 * the break values for the different R.N.G.'s, we choose the best (largest)
Packit 575503
 * one we can and set things up for it.  srandom() is then called to
Packit 575503
 * initialize the state information.
Packit 575503
 *
Packit 575503
 * Note that on return from srandom(), we set state[-1] to be the type
Packit 575503
 * multiplexed with the current value of the rear pointer; this is so
Packit 575503
 * successive calls to initstate() won't lose this information and will be
Packit 575503
 * able to restart with setstate().
Packit 575503
 *
Packit 575503
 * Note: the first thing we do is save the current state, if any, just like
Packit 575503
 * setstate() so that it doesn't matter when initstate is called.
Packit 575503
 *
Packit 575503
 * Returns a pointer to the old state.
Packit 575503
 *
Packit 575503
 * Note: The Sparc platform requires that arg_state begin on an int
Packit 575503
 * word boundary; otherwise a bus error will occur. Even so, lint will
Packit 575503
 * complain about mis-alignment, but you should disregard these messages.
Packit 575503
 */
Packit 575503
char *
Packit 575503
initstate(seed, arg_state, n)
Packit 575503
	unsigned long seed;		/* seed for R.N.G. */
Packit 575503
	char *arg_state;		/* pointer to state array */
Packit 575503
	long n;				/* # bytes of state info */
Packit 575503
{
Packit 575503
	char *ostate = (char *)(&state[-1]);
Packit 575503
	uint32_t *int_arg_state = (uint32_t *)arg_state;
Packit 575503
Packit 575503
	if (rand_type == TYPE_0)
Packit 575503
		state[-1] = rand_type;
Packit 575503
	else
Packit 575503
		state[-1] = MAX_TYPES * (rptr - state) + rand_type;
Packit 575503
	if (n < BREAK_0) {
Packit 575503
		(void)fprintf(stderr,
Packit 575503
		    "random: not enough state (%ld bytes); ignored.\n", n);
Packit 575503
		return(0);
Packit 575503
	}
Packit 575503
	if (n < BREAK_1) {
Packit 575503
		rand_type = TYPE_0;
Packit 575503
		rand_deg = DEG_0;
Packit 575503
		rand_sep = SEP_0;
Packit 575503
	} else if (n < BREAK_2) {
Packit 575503
		rand_type = TYPE_1;
Packit 575503
		rand_deg = DEG_1;
Packit 575503
		rand_sep = SEP_1;
Packit 575503
	} else if (n < BREAK_3) {
Packit 575503
		rand_type = TYPE_2;
Packit 575503
		rand_deg = DEG_2;
Packit 575503
		rand_sep = SEP_2;
Packit 575503
	} else if (n < BREAK_4) {
Packit 575503
		rand_type = TYPE_3;
Packit 575503
		rand_deg = DEG_3;
Packit 575503
		rand_sep = SEP_3;
Packit 575503
	} else {
Packit 575503
		rand_type = TYPE_4;
Packit 575503
		rand_deg = DEG_4;
Packit 575503
		rand_sep = SEP_4;
Packit 575503
	}
Packit 575503
	state = int_arg_state + 1; /* first location */
Packit 575503
	end_ptr = &state[rand_deg];	/* must set end_ptr before srandom */
Packit 575503
	srandom(seed);
Packit 575503
	if (rand_type == TYPE_0)
Packit 575503
		int_arg_state[0] = rand_type;
Packit 575503
	else
Packit 575503
		int_arg_state[0] = MAX_TYPES * (rptr - state) + rand_type;
Packit 575503
	return(ostate);
Packit 575503
}
Packit 575503
Packit 575503
/*
Packit 575503
 * setstate:
Packit 575503
 *
Packit 575503
 * Restore the state from the given state array.
Packit 575503
 *
Packit 575503
 * Note: it is important that we also remember the locations of the pointers
Packit 575503
 * in the current state information, and restore the locations of the pointers
Packit 575503
 * from the old state information.  This is done by multiplexing the pointer
Packit 575503
 * location into the zeroeth word of the state information.
Packit 575503
 *
Packit 575503
 * Note that due to the order in which things are done, it is OK to call
Packit 575503
 * setstate() with the same state as the current state.
Packit 575503
 *
Packit 575503
 * Returns a pointer to the old state information.
Packit 575503
 *
Packit 575503
 * Note: The Sparc platform requires that arg_state begin on an int
Packit 575503
 * word boundary; otherwise a bus error will occur. Even so, lint will
Packit 575503
 * complain about mis-alignment, but you should disregard these messages.
Packit 575503
 */
Packit 575503
char *
Packit 575503
setstate(arg_state)
Packit 575503
	char *arg_state;		/* pointer to state array */
Packit 575503
{
Packit 575503
	uint32_t *new_state = (uint32_t *)arg_state;
Packit 575503
	uint32_t type = new_state[0] % MAX_TYPES;
Packit 575503
	uint32_t rear = new_state[0] / MAX_TYPES;
Packit 575503
	char *ostate = (char *)(&state[-1]);
Packit 575503
Packit 575503
	if (rand_type == TYPE_0)
Packit 575503
		state[-1] = rand_type;
Packit 575503
	else
Packit 575503
		state[-1] = MAX_TYPES * (rptr - state) + rand_type;
Packit 575503
	switch(type) {
Packit 575503
	case TYPE_0:
Packit 575503
	case TYPE_1:
Packit 575503
	case TYPE_2:
Packit 575503
	case TYPE_3:
Packit 575503
	case TYPE_4:
Packit 575503
		rand_type = type;
Packit 575503
		rand_deg = degrees[type];
Packit 575503
		rand_sep = seps[type];
Packit 575503
		break;
Packit 575503
	default:
Packit 575503
		(void)fprintf(stderr,
Packit 575503
		    "random: state info corrupted; not changed.\n");
Packit 575503
	}
Packit 575503
	state = new_state + 1;
Packit 575503
	if (rand_type != TYPE_0) {
Packit 575503
		rptr = &state[rear];
Packit 575503
		fptr = &state[(rear + rand_sep) % rand_deg];
Packit 575503
	}
Packit 575503
	end_ptr = &state[rand_deg];		/* set end_ptr too */
Packit 575503
	return(ostate);
Packit 575503
}
Packit 575503
Packit 575503
/*
Packit 575503
 * random:
Packit 575503
 *
Packit 575503
 * If we are using the trivial TYPE_0 R.N.G., just do the old linear
Packit 575503
 * congruential bit.  Otherwise, we do our fancy trinomial stuff, which is
Packit 575503
 * the same in all the other cases due to all the global variables that have
Packit 575503
 * been set up.  The basic operation is to add the number at the rear pointer
Packit 575503
 * into the one at the front pointer.  Then both pointers are advanced to
Packit 575503
 * the next location cyclically in the table.  The value returned is the sum
Packit 575503
 * generated, reduced to 31 bits by throwing away the "least random" low bit.
Packit 575503
 *
Packit 575503
 * Note: the code takes advantage of the fact that both the front and
Packit 575503
 * rear pointers can't wrap on the same call by not testing the rear
Packit 575503
 * pointer if the front one has wrapped.
Packit 575503
 *
Packit 575503
 * Returns a 31-bit random number.
Packit 575503
 */
Packit 575503
static long
Packit 575503
random_old()
Packit 575503
{
Packit 575503
	uint32_t i;
Packit 575503
	uint32_t *f, *r;
Packit 575503
Packit 575503
	if (rand_type == TYPE_0) {
Packit 575503
		i = state[0];
Packit 575503
		state[0] = i = (good_rand(i)) & 0x7fffffff;
Packit 575503
	} else {
Packit 575503
		/*
Packit 575503
		 * Use local variables rather than static variables for speed.
Packit 575503
		 */
Packit 575503
		f = fptr; r = rptr;
Packit 575503
		*f += *r;
Packit 575503
		i = (*f >> 1) & 0x7fffffff;	/* chucking least random bit */
Packit 575503
		if (++f >= end_ptr) {
Packit 575503
			f = state;
Packit 575503
			++r;
Packit 575503
		}
Packit 575503
		else if (++r >= end_ptr) {
Packit 575503
			r = state;
Packit 575503
		}
Packit 575503
Packit 575503
		fptr = f; rptr = r;
Packit 575503
	}
Packit 575503
	return((long)i);
Packit 575503
}
Packit 575503
Packit 575503
long
Packit 575503
random()
Packit 575503
{
Packit 575503
	/*
Packit 575503
	 * This function is a wrapper to the original random(), now renamed
Packit 575503
	 * random_old(), to interpose a shuffle buffer to dramatically extend
Packit 575503
	 * the generator period at nearly zero additional execution cost,
Packit 575503
	 * and an additional storage cost set by the size of the
Packit 575503
	 * shuffle buffer (default: 512 longs, or 2K or 4K bytes).
Packit 575503
	 * The algorithm was first described in
Packit 575503
	 *
Packit 575503
	 *     Carter Bays and S. D. Durham
Packit 575503
	 *     Improving a Poor Random Number Generator
Packit 575503
	 *     ACM Transactions on Mathematical Software (TOMS) 2(1) 59--64 (March 1976)
Packit 575503
	 *     http://dx.doi.org/10.1145/355666.355670
Packit 575503
	 * 
Packit 575503
	 * and later revisited in
Packit 575503
	 * 
Packit 575503
	 *     Carter Bays
Packit 575503
	 *     C364. Improving a random number generator: a comparison between two shuffling methods
Packit 575503
	 *     Journal of Statistical Computation and Simulation 36(1) 57--59 (May 1990)
Packit 575503
	 *     http://dx.doi.org/10.1080/00949659008811264
Packit 575503
	 *
Packit 575503
	 * The second paper is critically important because it
Packit 575503
	 * emphasizes how an apparently trivial change to the final
Packit 575503
	 * element selection can destroy the period-lengthening
Packit 575503
	 * feature of the original shuffle algorithm.
Packit 575503
	 * 
Packit 575503
	 * Here is a table of the increase in period size for a
Packit 575503
	 * shuffle generator using 32-bit and 64-bit unsigned integer
Packit 575503
	 * linear congruential generators, which are known to have
Packit 575503
	 * significant correlations, and are thus inadvisable for
Packit 575503
	 * serious work with random numbers:
Packit 575503
	 *
Packit 575503
	 * hocd128> for (n = 32; n < 4096; n *= 2) \
Packit 575503
	 *              printf("%7d\t%12.3.4e\t%12.3.4e\n",
Packit 575503
	 *              n, \
Packit 575503
	 *              sqrt(PI * gamma(n + 1)/(2**32 - 1)) / (2**32 - 1), \\
Packit 575503
	 *              sqrt(PI * gamma(n + 1)/(2**64 - 1)) / (2**64 - 1))
Packit 575503
	 * 
Packit 575503
	 *      32    3.230e+03       1.148e-11
Packit 575503
	 *      64    2.243e+30       7.969e+15
Packit 575503
	 *     128    3.910e+93       1.389e+79
Packit 575503
	 *     256   1.844e+239      6.552e+224
Packit 575503
	 *     512   1.174e+569      4.172e+554
Packit 575503
	 *    1024  4.635e+1305     1.647e+1291
Packit 575503
	 *    2048  8.144e+2932     2.893e+2918
Packit 575503
	 *
Packit 575503
	 * A generator giving one result per nanosecond would produce
Packit 575503
	 * about 3.16e16 random numbers per year, so even for
Packit 575503
	 * massively parallel operations with, say, one million CPU
Packit 575503
	 * cores, it could not produce more than 10**23 values per
Packit 575503
	 * year.  The main benefit of an enormous period is that it
Packit 575503
	 * makes long-range correlations vanishingly unlikely, even
Packit 575503
	 * when starting seeds are similar (e.g., seeds of 0, 1, 2,
Packit 575503
	 * ...), and therefore makes possible families of generators
Packit 575503
	 * (needed in parallel computations) where the probability of
Packit 575503
	 * sequence overlap between family members is essentially
Packit 575503
	 * zero.
Packit 575503
	 */
Packit 575503
Packit 575503
	int k;
Packit 575503
	long r;
Packit 575503
	static long s = 0xcafefeedL;
Packit 575503
Packit 575503
	if (shuffle_init) {	/* first time, or seed changed by srand() */
Packit 575503
		for (k = 0; k < SHUFFLE_MAX; k++)
Packit 575503
			shuffle_buffer[k] = random_old();
Packit 575503
Packit 575503
		s = random_old();
Packit 575503
		shuffle_init = 0;
Packit 575503
	}
Packit 575503
Packit 575503
	r = random_old();
Packit 575503
	k = s & SHUFFLE_MASK;		/* random index into shuffle_buffer[] */
Packit 575503
Packit 575503
	assert(0L <= k && k < SHUFFLE_MAX);
Packit 575503
Packit 575503
	s = shuffle_buffer[k];
Packit 575503
	shuffle_buffer[k] = r;
Packit 575503
Packit 575503
	return (s);
Packit 575503
}