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 et 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.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"
|
2024-12-24 05:57:52 +00:00
|
|
|
#include "libc/thread/posixthread.internal.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
|
|
|
|
2024-07-20 09:20:03 +00:00
|
|
|
static int _rand64_pid;
|
|
|
|
static unsigned __int128 _rand64_pool;
|
2025-01-01 12:59:38 +00:00
|
|
|
static pthread_mutex_t __rand64_lock_obj = PTHREAD_MUTEX_INITIALIZER;
|
|
|
|
|
|
|
|
void __rand64_lock(void) {
|
|
|
|
_pthread_mutex_lock(&__rand64_lock_obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
void __rand64_unlock(void) {
|
|
|
|
_pthread_mutex_unlock(&__rand64_lock_obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
void __rand64_wipe(void) {
|
|
|
|
_pthread_mutex_wipe_np(&__rand64_lock_obj);
|
|
|
|
}
|
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-04-07 07:15:35 +00:00
|
|
|
* @note this function passes bigcrush and practrand
|
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;
|
2025-01-01 12:59:38 +00:00
|
|
|
__rand64_lock();
|
2024-07-20 09:20:03 +00:00
|
|
|
if (__pid == _rand64_pid) {
|
|
|
|
s = _rand64_pool; // normal path
|
2022-04-12 12:20:17 +00:00
|
|
|
} else {
|
2024-07-20 09:20:03 +00:00
|
|
|
if (!_rand64_pid) {
|
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
|
2024-07-20 09:20:03 +00:00
|
|
|
s = _rand64_pool ^ 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;
|
2024-07-20 09:20:03 +00:00
|
|
|
_rand64_pid = __pid;
|
2022-04-12 12:20:17 +00:00
|
|
|
}
|
2024-07-20 09:20:03 +00:00
|
|
|
_rand64_pool = (s *= 15750249268501108917ull); // lemur64
|
2025-01-01 12:59:38 +00:00
|
|
|
__rand64_unlock();
|
2022-04-12 12:20:17 +00:00
|
|
|
return s >> 64;
|
2021-06-24 19:31:26 +00:00
|
|
|
}
|