From aee5563c8caaac3b4d05802c45b689064b51b298 Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Sun, 2 Feb 2025 13:13:20 +0100 Subject: [PATCH] dict: Handle ENOSYS from getentropy gracefully Should fix #854. --- dict.c | 32 ++++++++++++++++++++++---------- 1 file changed, 22 insertions(+), 10 deletions(-) diff --git a/dict.c b/dict.c index 49e1c6bf..a238cd9d 100644 --- a/dict.c +++ b/dict.c @@ -928,14 +928,15 @@ xmlDictQLookup(xmlDictPtr dict, const xmlChar *prefix, const xmlChar *name) { #define WIN32_LEAN_AND_MEAN #include #include -#elif defined(HAVE_GETENTROPY) - #ifdef HAVE_UNISTD_H - #include - #endif - #ifdef HAVE_SYS_RANDOM_H - #include - #endif #else + #if defined(HAVE_GETENTROPY) + #ifdef HAVE_UNISTD_H + #include + #endif + #ifdef HAVE_SYS_RANDOM_H + #include + #endif + #endif #include #endif @@ -965,9 +966,21 @@ xmlInitRandom(void) { "error code %lu\n", GetLastError()); abort(); } -#elif defined(HAVE_GETENTROPY) +#else + int var; + +#if defined(HAVE_GETENTROPY) while (1) { if (getentropy(globalRngState, sizeof(globalRngState)) == 0) + return; + + /* + * This most likely means that libxml2 was compiled on + * a system supporting certain system calls and is running + * on a system that doesn't support these calls, as can + * be the case on Linux. + */ + if (errno == ENOSYS) break; if (errno != EINTR) { @@ -976,8 +989,7 @@ xmlInitRandom(void) { abort(); } } -#else - int var; +#endif globalRngState[0] = (unsigned) time(NULL) ^