From e861515053bc3ec8624abb2856a1f809f13a51d9 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 28 Mar 2025 14:16:22 -0400 Subject: [PATCH] Make getrandom() platform-compatible --- src/stdlib/stdlib.c | 14 +++++++++++++- src/stdlib/threads.c | 14 +++++++++++++- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/src/stdlib/stdlib.c b/src/stdlib/stdlib.c index 4a1f7dd..97c7b21 100644 --- a/src/stdlib/stdlib.c +++ b/src/stdlib/stdlib.c @@ -10,7 +10,6 @@ #include #include #include -#include #include #include "print.h" @@ -30,6 +29,19 @@ #include "text.h" #include "util.h" +#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__) +static ssize_t getrandom(void *buf, size_t buflen, unsigned int flags) { + (void)flags; + arc4random_buf(buf, buflen); + return buflen; +} +#elif defined(__linux__) +// Use getrandom() +# include +#else + #error "Unsupported platform for secure random number generation" +#endif + public bool USE_COLOR; static void signal_handler(int sig, siginfo_t *, void *) diff --git a/src/stdlib/threads.c b/src/stdlib/threads.c index 9ad68c8..05f5a94 100644 --- a/src/stdlib/threads.c +++ b/src/stdlib/threads.c @@ -10,7 +10,6 @@ #include #include #include -#include #include "arrays.h" #include "datatypes.h" @@ -21,6 +20,19 @@ #include "types.h" #include "util.h" +#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__) +static ssize_t getrandom(void *buf, size_t buflen, unsigned int flags) { + (void)flags; + arc4random_buf(buf, buflen); + return buflen; +} +#elif defined(__linux__) +// Use getrandom() +# include +#else + #error "Unsupported platform for secure random number generation" +#endif + static void *run_thread(Closure_t *closure) { uint8_t *random_bytes = GC_MALLOC_ATOMIC(40);