Files
.github
CMakeModules
dist
externals
SDL
Vulkan-Headers
cmake-modules
cpp-httplib
cubeb
discord-rpc
dynarmic
ffmpeg
find-modules
getopt
glad
httplib
inih
libressl
crypto
aes
asn1
bf
bio
bn
buffer
camellia
cast
chacha
cmac
cms
comp
compat
arc4random.c
arc4random.h
arc4random_aix.h
arc4random_freebsd.h
arc4random_hpux.h
arc4random_linux.h
arc4random_netbsd.h
arc4random_osx.h
arc4random_solaris.h
arc4random_uniform.c
arc4random_win.h
bsd-asprintf.c
chacha_private.h
crypto_lock_win.c
explicit_bzero.c
explicit_bzero_win.c
freezero.c
getentropy_aix.c
getentropy_freebsd.c
getentropy_hpux.c
getentropy_linux.c
getentropy_netbsd.c
getentropy_osx.c
getentropy_solaris.c
getentropy_win.c
getpagesize.c
getprogname_linux.c
getprogname_unimpl.c
getprogname_windows.c
posix_win.c
reallocarray.c
recallocarray.c
strcasecmp.c
strlcat.c
strlcpy.c
strndup.c
strnlen.c
strsep.c
syslog_r.c
timegm.c
timingsafe_bcmp.c
timingsafe_memcmp.c
conf
curve25519
des
dh
dsa
dso
ec
ecdh
ecdsa
engine
err
evp
gost
hkdf
hmac
idea
lhash
md4
md5
modes
objects
ocsp
pem
pkcs12
pkcs7
poly1305
rand
rc2
rc4
ripemd
rsa
sha
sm3
sm4
stack
ts
txt_db
ui
whrlpool
x509
CMakeLists.txt
VERSION
arm_arch.h
armcap.c
armv4cpuid.S
constant_time_locl.h
cpt_err.c
cpuid-elf-x86_64.S
cpuid-macosx-x86_64.S
cpuid-masm-x86_64.S
cpuid-mingw64-x86_64.S
cryptlib.c
cryptlib.h
crypto.sym
crypto_init.c
crypto_lock.c
cversion.c
ex_data.c
malloc-wrapper.c
md32_common.h
mem_clr.c
mem_dbg.c
o_init.c
o_str.c
o_time.c
o_time.h
x86_arch.h
include
ssl
tls
.gitignore
CMakeLists.txt
COPYING
ChangeLog
FindLibreSSL.cmake
INSTALL
README.md
README.windows
VERSION
cmake_export_symbol.cmake
ltmain.sh
tap-driver.sh
test-driver
libusb
libzip
mbedtls
microprofile
opus
sirit
soundtouch
xbyak
CMakeLists.txt
patches
src
CMakeLists.txt
LICENSE
README.md
license.txt
yuzu/externals/libressl/crypto/compat/arc4random_win.h

79 lines
2.2 KiB
C
Raw Normal View History

2020-12-28 15:15:37 +00:00
/* $OpenBSD: arc4random_win.h,v 1.6 2016/06/30 12:17:29 bcook Exp $ */
/*
* Copyright (c) 1996, David Mazieres <dm@uun.org>
* Copyright (c) 2008, Damien Miller <djm@openbsd.org>
* Copyright (c) 2013, Markus Friedl <markus@openbsd.org>
* Copyright (c) 2014, Theo de Raadt <deraadt@openbsd.org>
*
* Permission to use, copy, modify, and 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.
*
* 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.
*/
/*
* Stub functions for portability.
*/
#include <windows.h>
static volatile HANDLE arc4random_mtx = NULL;
/*
* Initialize the mutex on the first lock attempt. On collision, each thread
* will attempt to allocate a mutex and compare-and-swap it into place as the
* global mutex. On failure to swap in the global mutex, the mutex is closed.
*/
#define _ARC4_LOCK() { \
if (!arc4random_mtx) { \
HANDLE p = CreateMutex(NULL, FALSE, NULL); \
if (InterlockedCompareExchangePointer((void **)&arc4random_mtx, (void *)p, NULL)) \
CloseHandle(p); \
} \
WaitForSingleObject(arc4random_mtx, INFINITE); \
} \
#define _ARC4_UNLOCK() ReleaseMutex(arc4random_mtx)
static inline void
_getentropy_fail(void)
{
TerminateProcess(GetCurrentProcess(), 0);
}
static inline int
_rs_allocate(struct _rs **rsp, struct _rsx **rsxp)
{
*rsp = VirtualAlloc(NULL, sizeof(**rsp),
MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
if (*rsp == NULL)
return (-1);
*rsxp = VirtualAlloc(NULL, sizeof(**rsxp),
MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE);
if (*rsxp == NULL) {
VirtualFree(*rsp, 0, MEM_RELEASE);
*rsp = NULL;
return (-1);
}
return (0);
}
static inline void
_rs_forkhandler(void)
{
}
static inline void
_rs_forkdetect(void)
{
}