summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaiki Ueno <dueno@redhat.com>2018-04-27 09:51:59 +0200
committerDaiki Ueno <ueno@gnu.org>2018-05-01 13:30:43 +0200
commit6202903b261dfae740af3f8e985244bab48470ba (patch)
tree1a98dfeff05af569b7e1dd341da685dbf2e73a76
parent173ad93cc54057886b2055f3d73ea64a047127d1 (diff)
Revert "build: Check strerror_l() and uselocale() seperately"
This reverts commit 173ad93cc54057886b2055f3d73ea64a047127d1. We should rather use newlocale() when per-thread locale is not set. Otherwise uselocale() could return LC_GLOBAL_LOCALE on some platforms (e.g. musl-libc) and calling strerror_l() with it leads to an undefined behavior.
-rw-r--r--common/debug.c9
-rw-r--r--common/message.c9
-rw-r--r--configure.ac2
3 files changed, 5 insertions, 15 deletions
diff --git a/common/debug.c b/common/debug.c
index cfcd465..5f7546e 100644
--- a/common/debug.c
+++ b/common/debug.c
@@ -151,7 +151,7 @@ p11_debug_message_err (int flag,
{
va_list args;
char strerr[P11_DEBUG_MESSAGE_MAX];
-#if defined(HAVE_STRERROR_L) && defined(HAVE_USELOCALE)
+#ifdef HAVE_STRERROR_L
locale_t loc;
#endif
@@ -162,12 +162,7 @@ p11_debug_message_err (int flag,
va_end (args);
snprintf (strerr, sizeof (strerr), "Unknown error %d", errnum);
- /* As strerror_r() is being deprecated in POSIX:
- * http://austingroupbugs.net/view.php?id=655
- * we prefer to use strerror_l() with per-thread locale
- * argument as a thread-safe variant of strerror().
- */
-#if defined(HAVE_STRERROR_L) && defined(HAVE_USELOCALE)
+#ifdef HAVE_STRERROR_L
loc = uselocale ((locale_t) 0);
if (loc != NULL)
strncpy (strerr, strerror_l (errnum, loc), sizeof (strerr));
diff --git a/common/message.c b/common/message.c
index ca087ea..34e0d5b 100644
--- a/common/message.c
+++ b/common/message.c
@@ -104,7 +104,7 @@ p11_message_err (int errnum,
char strerr[P11_MESSAGE_MAX];
va_list va;
size_t length;
-#if defined(HAVE_STRERROR_L) && defined(HAVE_USELOCALE)
+#ifdef HAVE_STRERROR_L
locale_t loc;
#endif
@@ -118,12 +118,7 @@ p11_message_err (int errnum,
buffer[length] = 0;
snprintf (strerr, sizeof (strerr), "Unknown error %d", errnum);
- /* As strerror_r() is being deprecated in POSIX:
- * http://austingroupbugs.net/view.php?id=655
- * we prefer to use strerror_l() with per-thread locale
- * argument as a thread-safe variant of strerror().
- */
-#if defined(HAVE_STRERROR_L) && defined(HAVE_USELOCALE)
+#ifdef HAVE_STRERROR_L
loc = uselocale ((locale_t) 0);
if (loc != NULL)
strncpy (strerr, strerror_l (errnum, loc), sizeof (strerr));
diff --git a/configure.ac b/configure.ac
index 686bd06..7fcbe01 100644
--- a/configure.ac
+++ b/configure.ac
@@ -101,7 +101,7 @@ if test "$os_unix" = "yes"; then
AC_CHECK_MEMBERS([struct dirent.d_type],,,[#include <dirent.h>])
AC_CHECK_FUNCS([getprogname getexecname basename mkstemp mkdtemp])
AC_CHECK_FUNCS([getauxval issetugid getresuid secure_getenv])
- AC_CHECK_FUNCS([strnstr memdup strndup strerror_l strerror_r uselocale])
+ AC_CHECK_FUNCS([strnstr memdup strndup strerror_l strerror_r])
AC_CHECK_FUNCS([reallocarray])
AC_CHECK_FUNCS([fdwalk])
AC_CHECK_FUNCS([setenv])