1994-05-27 05:00:24 +00:00
|
|
|
/*-
|
2017-11-20 19:49:47 +00:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
1994-05-27 05:00:24 +00:00
|
|
|
* Copyright (c) 1990, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2013-06-13 00:19:30 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-27 05:00:24 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
1999-05-24 23:30:14 +00:00
|
|
|
*
|
|
|
|
* Posix rand_r function added May 1999 by Wes Peters <wes@softweyr.com>.
|
1994-05-27 05:00:24 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
|
|
|
static char sccsid[] = "@(#)rand.c 8.1 (Berkeley) 6/14/93";
|
|
|
|
#endif /* LIBC_SCCS and not lint */
|
2002-03-22 21:53:29 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2003-01-03 23:38:21 +00:00
|
|
|
#include "namespace.h"
|
2013-04-02 23:41:20 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/sysctl.h>
|
1994-05-27 05:00:24 +00:00
|
|
|
#include <stdlib.h>
|
2001-04-23 10:38:26 +00:00
|
|
|
#include "un-namespace.h"
|
1994-05-27 05:00:24 +00:00
|
|
|
|
1999-05-24 23:30:14 +00:00
|
|
|
#ifdef TEST
|
|
|
|
#include <stdio.h>
|
|
|
|
#endif /* TEST */
|
|
|
|
|
|
|
|
static int
|
|
|
|
do_rand(unsigned long *ctx)
|
|
|
|
{
|
2001-02-27 14:42:19 +00:00
|
|
|
/*
|
|
|
|
* Compute x = (7^5 * x) mod (2^31 - 1)
|
2007-12-11 20:39:32 +00:00
|
|
|
* without overflowing 31 bits:
|
2001-02-27 14:42:19 +00:00
|
|
|
* (2^31 - 1) = 127773 * (7^5) + 2836
|
|
|
|
* From "Random number generators: good ones are hard to find",
|
|
|
|
* Park and Miller, Communications of the ACM, vol. 31, no. 10,
|
|
|
|
* October 1988, p. 1195.
|
|
|
|
*/
|
|
|
|
long hi, lo, x;
|
|
|
|
|
2016-05-29 13:57:06 +00:00
|
|
|
/* Transform to [1, 0x7ffffffe] range. */
|
|
|
|
x = (*ctx % 0x7ffffffe) + 1;
|
|
|
|
hi = x / 127773;
|
|
|
|
lo = x % 127773;
|
2001-02-27 14:42:19 +00:00
|
|
|
x = 16807 * lo - 2836 * hi;
|
2003-02-03 10:22:12 +00:00
|
|
|
if (x < 0)
|
2001-02-27 14:42:19 +00:00
|
|
|
x += 0x7fffffff;
|
2013-07-03 21:21:54 +00:00
|
|
|
/* Transform to [0, 0x7ffffffd] range. */
|
2016-05-29 13:57:06 +00:00
|
|
|
x--;
|
|
|
|
*ctx = x;
|
|
|
|
return (x);
|
1999-05-24 23:30:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2016-05-29 13:57:06 +00:00
|
|
|
rand_r(unsigned *ctx)
|
1999-05-24 23:30:14 +00:00
|
|
|
{
|
2013-07-04 12:35:39 +00:00
|
|
|
u_long val;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
val = *ctx;
|
|
|
|
r = do_rand(&val);
|
2016-05-29 13:57:06 +00:00
|
|
|
*ctx = (unsigned)val;
|
2003-02-02 14:27:51 +00:00
|
|
|
return (r);
|
1999-05-24 23:30:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-29 13:57:06 +00:00
|
|
|
static u_long next = 1;
|
1994-05-27 05:00:24 +00:00
|
|
|
|
|
|
|
int
|
2015-09-20 20:24:28 +00:00
|
|
|
rand(void)
|
1994-05-27 05:00:24 +00:00
|
|
|
{
|
2003-02-05 21:25:50 +00:00
|
|
|
return (do_rand(&next));
|
1994-05-27 05:00:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-05-29 13:57:06 +00:00
|
|
|
srand(unsigned seed)
|
1994-05-27 05:00:24 +00:00
|
|
|
{
|
|
|
|
next = seed;
|
|
|
|
}
|
1999-05-24 23:30:14 +00:00
|
|
|
|
2001-04-23 02:29:10 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* sranddev:
|
|
|
|
*
|
|
|
|
* Many programs choose the seed value in a totally predictable manner.
|
2013-04-02 23:41:20 +00:00
|
|
|
* This often causes problems. We seed the generator using pseudo-random
|
|
|
|
* data from the kernel.
|
2001-04-23 02:29:10 +00:00
|
|
|
*/
|
|
|
|
void
|
2015-09-20 20:24:28 +00:00
|
|
|
sranddev(void)
|
2001-04-23 02:29:10 +00:00
|
|
|
{
|
2013-04-02 23:41:20 +00:00
|
|
|
int mib[2];
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
len = sizeof(next);
|
|
|
|
|
|
|
|
mib[0] = CTL_KERN;
|
|
|
|
mib[1] = KERN_ARND;
|
|
|
|
sysctl(mib, 2, (void *)&next, &len, NULL, 0);
|
2001-04-23 02:29:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-05-24 23:30:14 +00:00
|
|
|
#ifdef TEST
|
|
|
|
|
|
|
|
main()
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
unsigned myseed;
|
|
|
|
|
|
|
|
printf("seeding rand with 0x19610910: \n");
|
|
|
|
srand(0x19610910);
|
|
|
|
|
|
|
|
printf("generating three pseudo-random numbers:\n");
|
|
|
|
for (i = 0; i < 3; i++)
|
|
|
|
{
|
|
|
|
printf("next random number = %d\n", rand());
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("generating the same sequence with rand_r:\n");
|
|
|
|
myseed = 0x19610910;
|
|
|
|
for (i = 0; i < 3; i++)
|
|
|
|
{
|
|
|
|
printf("next random number = %d\n", rand_r(&myseed));
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* TEST */
|
|
|
|
|