/*
* -------------------------------------------------------------------
* Copyright © 2005-2020 Rich Felker, et al.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use, copy,
* modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
* -------------------------------------------------------------------
*/
/* This is an adaptation of musl's random() implementation, adding
* random_data buffers to make reentrant variants
*/
#include <stddef.h> /* NULL, size_t */
#include <stdint.h> /* int32_t, uint32_t */
#include <errno.h> /* errno */
/* This code uses the same lagged fibonacci generator as the
* original bsd random implementation except for the seeding
* which was broken in the original
*/
/* This must use the same struct layout as used by glibc
* and specified in LSB
* ref: https://refspecs.linuxfoundation.org/LSB_5.0.0/LSB-Core-generic/LSB-Core-generic/libc-ddefs.html
*/
struct random_data {
int32_t *x; /* int32_t *fptr */
int32_t *unused_1; /* int32_t *rptr */
int32_t *unused_2; /* int32_t *state */
int unused_3; /* int rand_type */
int unused_4; /* int rand_deg */
int unused_5; /* int rand_sep */
int32_t *unused_6; /* int32_t *end_ptr */
};
static uint32_t lcg31(uint32_t x) {
return (1103515245*x + 12345) & 0x7fffffff;
}
static uint64_t lcg64(uint64_t x) {
return 6364136223846793005ull*x + 1;
}
int srandom_r(unsigned seed, struct random_data *buf) {
int k;
uint64_t s = seed;
int n, i, j;
if (buf == NULL) {
return -1;
}
n = buf->x[-1]>>16;
i = (buf->x[-1]>>8)&0xff;
j = buf->x[-1]&0xff;
if (n > 63) {
return -1;
} else if (n == 0) {
buf->x[0] = s;
return 0;
}
i = n == 31 || n == 7 ? 3 : 1;
j = 0;
for (k = 0; k < n; k++) {
s = lcg64(s);
buf->x[k] = s>>32;
}
/* make sure x contains at least one odd number */
buf->x[0] |= 1;
buf->x[-1] = (n<<16)|(i<<8)|j;
return 0;
}
int initstate_r(unsigned seed, char *restrict state, size_t size,
struct random_data *restrict buf) {
int n;
if (size < 8) {
errno = EINVAL;
return -1;
}
if (size < 32) {
n = 0;
} else if (size < 64) {
n = 7;
} else if (size < 128) {
n = 15;
} else if (size < 256) {
n = 31;
} else {
n = 63;
}
buf->x = (int32_t*)state + 1;
buf->x[-1] = (n<<16)|(3<<8); /* (n<<16)|(i<<8)|j */
srandom_r(seed, buf);
return 0;
}
int setstate_r(char *restrict state, struct random_data *restrict buf) {
if (!state || !buf) {
errno = EINVAL;
return -1;
}
buf->x = (int32_t*)state + 1;
return 0;
}
int random_r(struct random_data *restrict buf, int32_t *restrict result) {
long k;
int n, i, j;
if (result == NULL || buf == NULL) {
errno = EINVAL;
return -1;
}
n = buf->x[-1]>>16;
i = (buf->x[-1]>>8)&0xff;
j = buf->x[-1]&0xff;
if (n == 0) {
k = buf->x[0] = lcg31(buf->x[0]);
goto end;
}
buf->x[i] += buf->x[j];
k = buf->x[i]>>1;
if (++i == n) {
i = 0;
} if (++j == n) {
j = 0;
}
buf->x[-1] = (n<<16)|(i<<8)|j;
end:
*result = k;
return 0;
}