2020-06-15 14:18:57 +00: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-28 01:18:44 +00: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 14:18:57 +00:00
|
|
|
│ │
|
2020-12-28 01:18:44 +00: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 14:18:57 +00:00
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2023-08-18 16:34:14 +00:00
|
|
|
#include "libc/intrin/getauxval.internal.h"
|
2021-06-24 19:31:26 +00:00
|
|
|
#include "libc/nexgen32e/rdtsc.h"
|
2022-04-20 16:56:53 +00:00
|
|
|
#include "libc/runtime/internal.h"
|
2021-06-24 19:31:26 +00:00
|
|
|
#include "libc/runtime/runtime.h"
|
2022-06-09 03:01:28 +00:00
|
|
|
#include "libc/str/str.h"
|
2021-06-24 19:31:26 +00:00
|
|
|
#include "libc/sysv/consts/auxv.h"
|
2022-09-16 21:02:06 +00:00
|
|
|
#include "libc/thread/thread.h"
|
|
|
|
#include "libc/thread/tls.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
|
2022-06-15 23:19:50 +00:00
|
|
|
static struct {
|
|
|
|
int thepid;
|
|
|
|
uint128_t thepool;
|
2022-09-16 21:02:06 +00:00
|
|
|
pthread_spinlock_t lock;
|
2022-06-15 23:19:50 +00:00
|
|
|
} g_rand64;
|
2020-12-27 15:02:35 +00:00
|
|
|
|
2020-06-15 14:18:57 +00:00
|
|
|
/**
|
2021-06-24 19:31:26 +00:00
|
|
|
* Returns nondeterministic random data.
|
2020-06-15 14:18:57 +00:00
|
|
|
*
|
2022-06-15 23:19:50 +00: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 14:18:57 +00:00
|
|
|
*
|
2021-09-28 05:58:51 +00:00
|
|
|
* @see rdseed(), rdrand(), rand(), random(), rngset()
|
2022-06-15 23:19:50 +00:00
|
|
|
* @note this function takes 5 cycles (30 if `__threaded`)
|
2022-04-07 07:15:35 +00:00
|
|
|
* @note this function is not intended for cryptography
|
|
|
|
* @note this function passes bigcrush and practrand
|
2022-06-15 23:19:50 +00:00
|
|
|
* @asyncsignalsafe
|
2022-04-07 07:15:35 +00:00
|
|
|
* @threadsafe
|
2021-06-24 19:31:26 +00:00
|
|
|
* @vforksafe
|
2020-06-15 14:18:57 +00:00
|
|
|
*/
|
2022-10-10 11:12:06 +00:00
|
|
|
uint64_t _rand64(void) {
|
2022-04-12 12:20:17 +00:00
|
|
|
void *p;
|
|
|
|
uint128_t s;
|
2022-09-16 21:02:06 +00:00
|
|
|
if (__threaded) pthread_spin_lock(&g_rand64.lock);
|
2022-06-15 23:19:50 +00:00
|
|
|
if (__pid == g_rand64.thepid) {
|
|
|
|
s = g_rand64.thepool; // normal path
|
2022-04-12 12:20:17 +00:00
|
|
|
} else {
|
2022-06-15 23:19:50 +00:00
|
|
|
if (!g_rand64.thepid) {
|
2023-08-18 16:34:14 +00:00
|
|
|
if (AT_RANDOM && (p = (void *)__getauxval(AT_RANDOM).value)) {
|
2022-04-12 12:20:17 +00:00
|
|
|
// linux / freebsd kernel supplied entropy
|
|
|
|
memcpy(&s, p, 16);
|
2022-04-07 07:15:35 +00:00
|
|
|
} else {
|
2022-04-12 12:20:17 +00:00
|
|
|
// otherwise initialize w/ cheap timestamp
|
|
|
|
s = kStartTsc;
|
2022-04-07 07:15:35 +00:00
|
|
|
}
|
2022-04-12 12:20:17 +00:00
|
|
|
} else {
|
|
|
|
// blend another timestamp on fork contention
|
2022-06-15 23:19:50 +00:00
|
|
|
s = g_rand64.thepool ^ rdtsc();
|
2021-09-28 05:58:51 +00:00
|
|
|
}
|
2022-04-12 12:20:17 +00:00
|
|
|
// blend the pid on startup and fork contention
|
|
|
|
s ^= __pid;
|
2022-06-15 23:19:50 +00:00
|
|
|
g_rand64.thepid = __pid;
|
2022-04-12 12:20:17 +00:00
|
|
|
}
|
2022-06-15 23:19:50 +00:00
|
|
|
g_rand64.thepool = (s *= 15750249268501108917ull); // lemur64
|
2022-09-16 21:02:06 +00:00
|
|
|
pthread_spin_unlock(&g_rand64.lock);
|
2022-04-12 12:20:17 +00:00
|
|
|
return s >> 64;
|
2021-06-24 19:31:26 +00:00
|
|
|
}
|