xref: /freebsd/lib/libc/stdlib/random.3 (revision dc36d6f9bb1753f3808552f3afd30eda9a7b206a)
158f0484fSRodney W. Grimes.\" Copyright (c) 1983, 1991, 1993
258f0484fSRodney W. Grimes.\"	The Regents of the University of California.  All rights reserved.
358f0484fSRodney W. Grimes.\"
458f0484fSRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without
558f0484fSRodney W. Grimes.\" modification, are permitted provided that the following conditions
658f0484fSRodney W. Grimes.\" are met:
758f0484fSRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright
858f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer.
958f0484fSRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright
1058f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer in the
1158f0484fSRodney W. Grimes.\"    documentation and/or other materials provided with the distribution.
12580b4d18SEd Maste.\" 3. Neither the name of the University nor the names of its contributors
1358f0484fSRodney W. Grimes.\"    may be used to endorse or promote products derived from this software
1458f0484fSRodney W. Grimes.\"    without specific prior written permission.
1558f0484fSRodney W. Grimes.\"
1658f0484fSRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1758f0484fSRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1858f0484fSRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1958f0484fSRodney W. Grimes.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2058f0484fSRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2158f0484fSRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2258f0484fSRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2358f0484fSRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2458f0484fSRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2558f0484fSRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2658f0484fSRodney W. Grimes.\" SUCH DAMAGE.
2758f0484fSRodney W. Grimes.\"
28*672e1225SConrad Meyer.Dd February 1, 2020
2958f0484fSRodney W. Grimes.Dt RANDOM 3
30a307d598SRuslan Ermilov.Os
3158f0484fSRodney W. Grimes.Sh NAME
3258f0484fSRodney W. Grimes.Nm random ,
3358f0484fSRodney W. Grimes.Nm srandom ,
347b0b1b2fSAndrey A. Chernov.Nm srandomdev ,
3558f0484fSRodney W. Grimes.Nm initstate ,
3658f0484fSRodney W. Grimes.Nm setstate
371631235aSConrad Meyer.Nd non-cryptographic pseudorandom number generator; routines for changing generators
3825bb73e0SAlexey Zelkin.Sh LIBRARY
3925bb73e0SAlexey Zelkin.Lb libc
4058f0484fSRodney W. Grimes.Sh SYNOPSIS
418aefde06SJeroen Ruigrok van der Werven.In stdlib.h
4258f0484fSRodney W. Grimes.Ft long
4358f0484fSRodney W. Grimes.Fn random void
4458f0484fSRodney W. Grimes.Ft void
458de6c267SEd Schouten.Fn srandom "unsigned int seed"
4696c31b26SAndrey A. Chernov.Ft void
477b0b1b2fSAndrey A. Chernov.Fn srandomdev void
4858f0484fSRodney W. Grimes.Ft char *
498de6c267SEd Schouten.Fn initstate "unsigned int seed" "char *state" "size_t n"
5058f0484fSRodney W. Grimes.Ft char *
5158f0484fSRodney W. Grimes.Fn setstate "char *state"
5258f0484fSRodney W. Grimes.Sh DESCRIPTION
53edab57e0SDag-Erling Smørgrav.Bf -symbolic
54eb51316bSColin PercivalThe functions described in this manual page are not secure.
55eb51316bSColin PercivalApplications which require unpredictable random numbers should use
56edab57e0SDag-Erling Smørgrav.Xr arc4random 3
57edab57e0SDag-Erling Smørgravinstead.
58edab57e0SDag-Erling Smørgrav.Ef
59edab57e0SDag-Erling Smørgrav.Pp
60825a73c3SConrad MeyerUnless initialized with less than 32 bytes of state, the
6158f0484fSRodney W. Grimes.Fn random
6258f0484fSRodney W. Grimesfunction
6358f0484fSRodney W. Grimesuses a non-linear additive feedback random number generator employing a
6458f0484fSRodney W. Grimesdefault table of size 31 long integers to return successive pseudo-random
6558f0484fSRodney W. Grimesnumbers in the range from 0 to
6658f0484fSRodney W. Grimes.if t 2\u\s731\s10\d\(mi1.
6758f0484fSRodney W. Grimes.if n (2**31)\(mi1.
6858f0484fSRodney W. GrimesThe period of this random number generator is very large, approximately
6958f0484fSRodney W. Grimes.if t 16\(mu(2\u\s731\s10\d\(mi1).
7058f0484fSRodney W. Grimes.if n 16*((2**31)\(mi1).
7158f0484fSRodney W. Grimes.Pp
72825a73c3SConrad MeyerIf initialized with less than 32 bytes of state,
73825a73c3SConrad Meyer.Fn random
74*672e1225SConrad Meyeruses the poor-quality 32-bit Park-Miller LCG.
75825a73c3SConrad Meyer.Pp
7658f0484fSRodney W. GrimesThe
77064f0074SMike Pritchard.Fn random
78064f0074SMike Pritchardand
79064f0074SMike Pritchard.Fn srandom
80825a73c3SConrad Meyerfunctions are analagous to
81064f0074SMike Pritchard.Xr rand 3
82064f0074SMike Pritchardand
83825a73c3SConrad Meyer.Xr srand 3 .
8458f0484fSRodney W. Grimes.Pp
8540f8b70dSAndrey A. ChernovLike
8658f0484fSRodney W. Grimes.Xr rand 3 ,
8758f0484fSRodney W. Grimes.Fn random
88825a73c3SConrad Meyeris implicitly initialized as if
89825a73c3SConrad Meyer.Fn srandom "1"
90825a73c3SConrad Meyerhad been invoked explicitly.
9158f0484fSRodney W. Grimes.Pp
9258f0484fSRodney W. GrimesThe
937b0b1b2fSAndrey A. Chernov.Fn srandomdev
94825a73c3SConrad Meyerroutine initializes the state array using random numbers obtained from the
95825a73c3SConrad Meyerkernel.
96825a73c3SConrad MeyerThis can generate states which are impossible to reproduce by calling
97825a73c3SConrad Meyer.Fn srandom ,
98825a73c3SConrad Meyerbecause the succeeding terms in the state buffer are no longer derived from the
99825a73c3SConrad MeyerPark-Miller LCG algorithm applied to a fixed seed.
1007b0b1b2fSAndrey A. Chernov.Pp
1017b0b1b2fSAndrey A. ChernovThe
10258f0484fSRodney W. Grimes.Fn initstate
103825a73c3SConrad Meyerroutine initializes the provided state array of
104825a73c3SConrad Meyer.Vt uint32_t
105825a73c3SConrad Meyervalues and uses it in future
106825a73c3SConrad Meyer.Fn random
107825a73c3SConrad Meyerinvocations.
108825a73c3SConrad Meyer(Despite the
109825a73c3SConrad Meyer.Vt char *
110825a73c3SConrad Meyertype of
111825a73c3SConrad Meyer.Fa state ,
112825a73c3SConrad Meyerthe underlying object must be a naturally aligned array of 32-bit values.)
1131a0a9345SRuslan ErmilovThe size of the state array (in bytes) is used by
11458f0484fSRodney W. Grimes.Fn initstate
11558f0484fSRodney W. Grimesto decide how sophisticated a random number generator it should use \(em the
11658f0484fSRodney W. Grimesmore state, the better the random numbers will be.
11758f0484fSRodney W. Grimes(Current "optimal" values for the amount of state information are
11858f0484fSRodney W. Grimes8, 32, 64, 128, and 256 bytes; other amounts will be rounded down to
1191a0a9345SRuslan Ermilovthe nearest known amount.
1201a0a9345SRuslan ErmilovUsing less than 8 bytes will cause an error.)
121825a73c3SConrad MeyerThe
122825a73c3SConrad Meyer.Fa seed
123825a73c3SConrad Meyeris used as in
124825a73c3SConrad Meyer.Fn srandom .
12558f0484fSRodney W. GrimesThe
12658f0484fSRodney W. Grimes.Fn initstate
12758f0484fSRodney W. Grimesfunction
12858f0484fSRodney W. Grimesreturns a pointer to the previous state information array.
12958f0484fSRodney W. Grimes.Pp
13058f0484fSRodney W. GrimesThe
13158f0484fSRodney W. Grimes.Fn setstate
132825a73c3SConrad Meyerroutine switches
133825a73c3SConrad Meyer.Fn random
134825a73c3SConrad Meyerto using the provided state.
135825a73c3SConrad MeyerIt returns a pointer to the previous state.
13658f0484fSRodney W. Grimes.Pp
13758f0484fSRodney W. GrimesOnce a state array has been initialized, it may be restarted at a
13858f0484fSRodney W. Grimesdifferent point either by calling
13958f0484fSRodney W. Grimes.Fn initstate
14058f0484fSRodney W. Grimes(with the desired seed, the state array, and its size) or by calling
14158f0484fSRodney W. Grimesboth
14258f0484fSRodney W. Grimes.Fn setstate
14358f0484fSRodney W. Grimes(with the state array) and
14458f0484fSRodney W. Grimes.Fn srandom
14558f0484fSRodney W. Grimes(with the desired seed).
14658f0484fSRodney W. GrimesThe advantage of calling both
14758f0484fSRodney W. Grimes.Fn setstate
14858f0484fSRodney W. Grimesand
14958f0484fSRodney W. Grimes.Fn srandom
15058f0484fSRodney W. Grimesis that the size of the state array does not have to be remembered after
15158f0484fSRodney W. Grimesit is initialized.
15258f0484fSRodney W. Grimes.Pp
15358f0484fSRodney W. GrimesWith 256 bytes of state information, the period of the random number
15458f0484fSRodney W. Grimesgenerator is greater than
15558f0484fSRodney W. Grimes.if t 2\u\s769\s10\d,
15658f0484fSRodney W. Grimes.if n 2**69
15758f0484fSRodney W. Grimeswhich should be sufficient for most purposes.
15858f0484fSRodney W. Grimes.Sh DIAGNOSTICS
15958f0484fSRodney W. GrimesIf
16058f0484fSRodney W. Grimes.Fn initstate
16158f0484fSRodney W. Grimesis called with less than 8 bytes of state information, or if
16258f0484fSRodney W. Grimes.Fn setstate
16316bf528dSAndrey A. Chernovdetects that the state information has been garbled,
16416bf528dSAndrey A. ChernovNULL is returned.
16558f0484fSRodney W. Grimes.Sh SEE ALSO
166e02cc8e4SDavid Schultz.Xr arc4random 3 ,
167866dcc94SKonstantin Belousov.Xr lrand48 3 ,
16840f8b70dSAndrey A. Chernov.Xr rand 3 ,
169df49b8e2SDima Dorfman.Xr random 4
17058f0484fSRodney W. Grimes.Sh HISTORY
17158f0484fSRodney W. GrimesThese
17258f0484fSRodney W. Grimesfunctions appeared in
17358f0484fSRodney W. Grimes.Bx 4.2 .
17424a0682cSRuslan Ermilov.Sh AUTHORS
17524a0682cSRuslan Ermilov.An Earl T. Cohen
176