2020-06-15 07:18:57 -07:00
|
|
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
|
|
|
│vi: set net ft=c ts=8 sts=2 sw=2 fenc=utf-8 :vi│
|
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
|
|
│ Copyright 2020 Justine Alexandra Roberts Tunney │
|
|
|
|
│ │
|
2020-12-27 17:18:44 -08:00
|
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
2020-06-15 07:18:57 -07:00
|
|
|
│ │
|
2020-12-27 17:18:44 -08:00
|
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
2020-06-15 07:18:57 -07:00
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2022-09-12 23:10:38 -07:00
|
|
|
#include "libc/intrin/_getauxval.internal.h"
|
2021-06-24 12:31:26 -07:00
|
|
|
#include "libc/nexgen32e/rdtsc.h"
|
2022-04-20 09:56:53 -07:00
|
|
|
#include "libc/runtime/internal.h"
|
2021-06-24 12:31:26 -07:00
|
|
|
#include "libc/runtime/runtime.h"
|
2022-06-08 20:01:28 -07:00
|
|
|
#include "libc/str/str.h"
|
2021-06-24 12:31:26 -07:00
|
|
|
#include "libc/sysv/consts/auxv.h"
|
2022-09-16 14:02:06 -07:00
|
|
|
#include "libc/thread/thread.h"
|
|
|
|
#include "libc/thread/tls.h"
|
2020-06-15 07:18:57 -07:00
|
|
|
|
2022-06-15 16:19:50 -07:00
|
|
|
static struct {
|
|
|
|
int thepid;
|
|
|
|
uint128_t thepool;
|
2022-09-16 14:02:06 -07:00
|
|
|
pthread_spinlock_t lock;
|
2022-06-15 16:19:50 -07:00
|
|
|
} g_rand64;
|
2020-12-27 07:02:35 -08:00
|
|
|
|
2020-06-15 07:18:57 -07:00
|
|
|
/**
|
2021-06-24 12:31:26 -07:00
|
|
|
* Returns nondeterministic random data.
|
2020-06-15 07:18:57 -07:00
|
|
|
*
|
2022-06-15 16:19:50 -07:00
|
|
|
* This function is similar to lemur64() except that it doesn't produce
|
|
|
|
* the same sequences of numbers each time your program is run. This is
|
|
|
|
* the case even across forks and threads, whose sequences will differ.
|
2020-06-15 07:18:57 -07:00
|
|
|
*
|
2021-09-27 22:58:51 -07:00
|
|
|
* @see rdseed(), rdrand(), rand(), random(), rngset()
|
2022-06-15 16:19:50 -07:00
|
|
|
* @note this function takes 5 cycles (30 if `__threaded`)
|
2022-04-07 00:15:35 -07:00
|
|
|
* @note this function is not intended for cryptography
|
|
|
|
* @note this function passes bigcrush and practrand
|
2022-06-15 16:19:50 -07:00
|
|
|
* @asyncsignalsafe
|
2022-04-07 00:15:35 -07:00
|
|
|
* @threadsafe
|
2021-06-24 12:31:26 -07:00
|
|
|
* @vforksafe
|
2020-06-15 07:18:57 -07:00
|
|
|
*/
|
2022-10-10 04:12:06 -07:00
|
|
|
uint64_t _rand64(void) {
|
2022-04-12 05:20:17 -07:00
|
|
|
void *p;
|
|
|
|
uint128_t s;
|
2022-09-16 14:02:06 -07:00
|
|
|
if (__threaded) pthread_spin_lock(&g_rand64.lock);
|
2022-06-15 16:19:50 -07:00
|
|
|
if (__pid == g_rand64.thepid) {
|
|
|
|
s = g_rand64.thepool; // normal path
|
2022-04-12 05:20:17 -07:00
|
|
|
} else {
|
2022-06-15 16:19:50 -07:00
|
|
|
if (!g_rand64.thepid) {
|
2022-07-24 19:40:32 -07:00
|
|
|
if (AT_RANDOM && (p = (void *)_getauxval(AT_RANDOM).value)) {
|
2022-04-12 05:20:17 -07:00
|
|
|
// linux / freebsd kernel supplied entropy
|
|
|
|
memcpy(&s, p, 16);
|
2022-04-07 00:15:35 -07:00
|
|
|
} else {
|
2022-04-12 05:20:17 -07:00
|
|
|
// otherwise initialize w/ cheap timestamp
|
|
|
|
s = kStartTsc;
|
2022-04-07 00:15:35 -07:00
|
|
|
}
|
2022-04-12 05:20:17 -07:00
|
|
|
} else {
|
|
|
|
// blend another timestamp on fork contention
|
2022-06-15 16:19:50 -07:00
|
|
|
s = g_rand64.thepool ^ rdtsc();
|
2021-09-27 22:58:51 -07:00
|
|
|
}
|
2022-04-12 05:20:17 -07:00
|
|
|
// blend the pid on startup and fork contention
|
|
|
|
s ^= __pid;
|
2022-06-15 16:19:50 -07:00
|
|
|
g_rand64.thepid = __pid;
|
2022-04-12 05:20:17 -07:00
|
|
|
}
|
2022-06-15 16:19:50 -07:00
|
|
|
g_rand64.thepool = (s *= 15750249268501108917ull); // lemur64
|
2022-09-16 14:02:06 -07:00
|
|
|
pthread_spin_unlock(&g_rand64.lock);
|
2022-04-12 05:20:17 -07:00
|
|
|
return s >> 64;
|
2021-06-24 12:31:26 -07:00
|
|
|
}
|