ARC4RANDOM(3) | Library Functions Manual | ARC4RANDOM(3) |
uint32_t
arc4random(void);
uint32_t
arc4random_uniform(uint32_t bound);
void
arc4random_buf(void *buf, size_t len);
void
arc4random_stir(void);
void
arc4random_addrandom(unsigned char *buf, int len);
arc4random() returns an integer in [0, 2^32) chosen independently with uniform distribution.
arc4random_uniform() returns an integer in [0, bound) chosen independently with uniform distribution.
arc4random_buf() stores len bytes into the memory pointed to by buf, each byte chosen independently from [0, 256) with uniform distribution.
arc4random_stir() draws entropy from the operating system and incorporates it into the library's PRNG state to influence future outputs.
arc4random_addrandom() incorporates len bytes, which must be nonnegative, from the buffer buf, into the library's PRNG state to influence future outputs.
It is not necessary for an application to call arc4random_stir() or arc4random_addrandom() before calling other arc4random functions. The first call to any arc4random function will initialize the PRNG state unpredictably from the system entropy pool.
The PRNG state is a 32-byte ChaCha20 key s. Each request to an arc4random function
arc4random() yields the first four bytes of k as output directly. arc4random_buf() either yields up to 32 bytes of k as output directly, or, for longer requests, uses k as a ChaCha20 key and yields the concatenation ChaCha20_k(0) || ChaCha20_k(1) || ... as output. arc4random_uniform() repeats arc4random() until it obtains an integer in [2^32 % bound, 2^32), and reduces that modulo bound.
The PRNG state is per-thread, unless memory allocation fails inside the library, in which case some threads may share global PRNG state with a mutex. The global PRNG state is zeroed on fork in the parent via pthread_atfork(3), and the per-thread PRNG state is zeroed on fork in the child via minherit(2) with MAP_INHERIT_ZERO, so that the child cannot reuse or see the parent's PRNG state. The PRNG state is reseeded automatically from the system entropy pool on the first use of an arc4random function after zeroing.
The first use of an arc4random function may abort the process in the highly unlikely event that library initialization necessary to implement the security model fails. Additionally, arc4random_stir() and arc4random_addrandom() may abort the process in the highly unlikely event that the operating system fails to provide entropy.
Daniel J. Bernstein, ChaCha, a variant of Salsa20, http://cr.yp.to/papers.html#chacha, 2008-01-28, Document ID: 4027b5256e17b9796842e6d0f68b0b5e.
The name ‘arc4random’ was chosen for hysterical raisins, because it was originally implemented using the RC4 stream cipher, which is now known to be badly enough biased to admit practical attacks in the real world. Unfortunately, the library found widespread adoption and the name stuck before anyone recognized that it was silly.
The signature of arc4random_addrandom() is silly. There is no reason to require casts or accept negative lengths: it should take a void * buffer and a size_t length. But it's too late to change that now.
arc4random_uniform() does not help to choose integers in [0, n) uniformly at random when n > 2^32.
November 16, 2014 | NetBSD 7.99 |