Commit c6f05593 authored by Bruce Momjian's avatar Bruce Momjian

Check and set thread-safe functions separately, rather than as a single

variable.

Remove thread locking for non-thread-safe functions, instead throw a
compile error.

Platforms will have to re-run tools/thread to record their thread
safety.
parent 15b330b6
...@@ -13198,8 +13198,8 @@ fi ...@@ -13198,8 +13198,8 @@ fi
if test $ac_cv_header_pthread_h = yes; then if test $ac_cv_header_pthread_h = yes; then
: :
else else
{ { echo "$as_me:$LINENO: error: pthread.h not found, required for --enable-thread-safetys" >&5 { { echo "$as_me:$LINENO: error: pthread.h not found, required for --enable-thread-safety" >&5
echo "$as_me: error: pthread.h not found, required for --enable-thread-safetys" >&2;} echo "$as_me: error: pthread.h not found, required for --enable-thread-safety" >&2;}
{ (exit 1); exit 1; }; } { (exit 1); exit 1; }; }
fi fi
...@@ -13222,32 +13222,40 @@ See the comment at the top of src/port/thread.c for more information. ...@@ -13222,32 +13222,40 @@ See the comment at the top of src/port/thread.c for more information.
" >&2;} " >&2;}
{ (exit 1); exit 1; }; } { (exit 1); exit 1; }; }
fi fi
else
# do not use values from template file
THREAD_CPPFLAGS=
THREAD_LIBS=
fi
# #
# Check for re-entrant versions of certain functions # Check for re-entrant versions of certain functions
# #
# Include special flags if threads are enabled _and_ if required for # Include special flags if threads are enabled _and_ if required for
# threading on this platform. Some platforms have *_r functions but # threading on this platform. Some platforms have *_r functions but
# their natively named funcs are threadsafe, and should be used instead. # their natively named funcs are thread-safe too.
# #
# One trick here is that if we don't call AC_CHECK_FUNCS, the # One trick here is that if we don't call AC_CHECK_FUNCS; the
# functions are marked "not found", which is perfect. # functions are marked "not found", which is perfect.
# #
if test "$enable_thread_safety" = yes -a "$NEED_REENTRANT_FUNCS" = yes ; then if test "$enable_thread_safety" = yes -a "$STRERROR_THREADSAFE" = yes ; then
cat >>confdefs.h <<\_ACEOF
#define STRERROR_THREADSAFE 1
_ACEOF
fi
if test "$enable_thread_safety" = yes -a "$GETPWUID_THREADSAFE" = yes ; then
cat >>confdefs.h <<\_ACEOF
#define GETPWUID_THREADSAFE 1
_ACEOF
fi
if test "$enable_thread_safety" = yes -a "$GETHOSTBYNAME_THREADSAFE" = yes ; then
cat >>confdefs.h <<\_ACEOF cat >>confdefs.h <<\_ACEOF
#define NEED_REENTRANT_FUNCS 1 #define GETHOSTBYNAME_THREADSAFE 1
_ACEOF _ACEOF
fi
# Check for *_r functions
_CFLAGS="$CFLAGS" _CFLAGS="$CFLAGS"
_LIBS="$LIBS" _LIBS="$LIBS"
CFLAGS="$CFLAGS $THREAD_CPPFLAGS" CFLAGS="$CFLAGS $THREAD_CPPFLAGS"
...@@ -13332,9 +13340,18 @@ done ...@@ -13332,9 +13340,18 @@ done
CFLAGS="$_CFLAGS" CFLAGS="$_CFLAGS"
LIBS="$_LIBS" LIBS="$_LIBS"
else
# do not use values from template file
THREAD_CPPFLAGS=
THREAD_LIBS=
fi fi
# This test makes sure that run tests work at all. Sometimes a shared # This test makes sure that run tests work at all. Sometimes a shared
# library is found by the linker, but the runtime linker can't find it. # library is found by the linker, but the runtime linker can't find it.
# This check should come after all modifications of compiler or linker # This check should come after all modifications of compiler or linker
......
dnl Process this file with autoconf to produce a configure script. dnl Process this file with autoconf to produce a configure script.
dnl $PostgreSQL: pgsql/configure.in,v 1.315 2004/02/11 17:29:01 momjian Exp $ dnl $PostgreSQL: pgsql/configure.in,v 1.316 2004/02/11 21:44:04 momjian Exp $
dnl dnl
dnl Developers, please strive to achieve this order: dnl Developers, please strive to achieve this order:
dnl dnl
...@@ -971,7 +971,7 @@ AC_FUNC_FSEEKO ...@@ -971,7 +971,7 @@ AC_FUNC_FSEEKO
# See the comment at the top of src/port/thread.c for more information. # See the comment at the top of src/port/thread.c for more information.
# #
if test "$enable_thread_safety" = yes; then if test "$enable_thread_safety" = yes; then
AC_CHECK_HEADER(pthread.h, [], [AC_MSG_ERROR([pthread.h not found, required for --enable-thread-safetys])]) AC_CHECK_HEADER(pthread.h, [], [AC_MSG_ERROR([pthread.h not found, required for --enable-thread-safety])])
if test "$THREAD_SUPPORT" != yes; then if test "$THREAD_SUPPORT" != yes; then
AC_MSG_ERROR([ AC_MSG_ERROR([
...@@ -982,28 +982,28 @@ functions, or libraries required for threading support. ...@@ -982,28 +982,28 @@ functions, or libraries required for threading support.
See the comment at the top of src/port/thread.c for more information. See the comment at the top of src/port/thread.c for more information.
]) ])
fi fi
else
# do not use values from template file
THREAD_CPPFLAGS=
THREAD_LIBS=
fi
AC_SUBST(THREAD_SUPPORT)
AC_SUBST(THREAD_CPPFLAGS)
AC_SUBST(THREAD_LIBS)
# #
# Check for re-entrant versions of certain functions # Check for re-entrant versions of certain functions
# #
# Include special flags if threads are enabled _and_ if required for # Include special flags if threads are enabled _and_ if required for
# threading on this platform. Some platforms have *_r functions but # threading on this platform. Some platforms have *_r functions but
# their natively named funcs are threadsafe, and should be used instead. # their natively named funcs are thread-safe too.
# #
# One trick here is that if we don't call AC_CHECK_FUNCS, the # One trick here is that if we don't call AC_CHECK_FUNCS; the
# functions are marked "not found", which is perfect. # functions are marked "not found", which is perfect.
# #
if test "$enable_thread_safety" = yes -a "$NEED_REENTRANT_FUNCS" = yes ; then if test "$enable_thread_safety" = yes -a "$STRERROR_THREADSAFE" = yes ; then
AC_DEFINE(NEED_REENTRANT_FUNCS, 1, [Define if non *_r libc functions are not thread safe]) AC_DEFINE(STRERROR_THREADSAFE, 1, [Define if strerror is not thread safe])
fi
if test "$enable_thread_safety" = yes -a "$GETPWUID_THREADSAFE" = yes ; then
AC_DEFINE(GETPWUID_THREADSAFE, 1, [Define if getpwuid is not thread safe])
fi
if test "$enable_thread_safety" = yes -a "$GETHOSTBYNAME_THREADSAFE" = yes ; then
AC_DEFINE(GETHOSTBYNAME_THREADSAFE, 1, [Define if gethostbyname is not thread safe])
fi
# Check for *_r functions
_CFLAGS="$CFLAGS" _CFLAGS="$CFLAGS"
_LIBS="$LIBS" _LIBS="$LIBS"
CFLAGS="$CFLAGS $THREAD_CPPFLAGS" CFLAGS="$CFLAGS $THREAD_CPPFLAGS"
...@@ -1011,8 +1011,17 @@ LIBS="$LIBS $THREAD_LIBS" ...@@ -1011,8 +1011,17 @@ LIBS="$LIBS $THREAD_LIBS"
AC_CHECK_FUNCS([strerror_r getpwuid_r gethostbyname_r]) AC_CHECK_FUNCS([strerror_r getpwuid_r gethostbyname_r])
CFLAGS="$_CFLAGS" CFLAGS="$_CFLAGS"
LIBS="$_LIBS" LIBS="$_LIBS"
else
# do not use values from template file
THREAD_CPPFLAGS=
THREAD_LIBS=
fi fi
AC_SUBST(THREAD_SUPPORT)
AC_SUBST(THREAD_CPPFLAGS)
AC_SUBST(THREAD_LIBS)
# This test makes sure that run tests work at all. Sometimes a shared # This test makes sure that run tests work at all. Sometimes a shared
# library is found by the linker, but the runtime linker can't find it. # library is found by the linker, but the runtime linker can't find it.
......
...@@ -43,6 +43,12 @@ ...@@ -43,6 +43,12 @@
(--enable-thread-safety) */ (--enable-thread-safety) */
#undef ENABLE_THREAD_SAFETY #undef ENABLE_THREAD_SAFETY
/* Define if gethostbyname is not thread safe */
#undef GETHOSTBYNAME_THREADSAFE
/* Define if getpwuid is not thread safe */
#undef GETPWUID_THREADSAFE
/* Define to 1 if gettimeofday() takes only 1 argument. */ /* Define to 1 if gettimeofday() takes only 1 argument. */
#undef GETTIMEOFDAY_1ARG #undef GETTIMEOFDAY_1ARG
...@@ -554,9 +560,6 @@ ...@@ -554,9 +560,6 @@
/* Define as the maximum alignment requirement of any C data type. */ /* Define as the maximum alignment requirement of any C data type. */
#undef MAXIMUM_ALIGNOF #undef MAXIMUM_ALIGNOF
/* Define if non *_r libc functions are not thread safe */
#undef NEED_REENTRANT_FUNCS
/* Define to the address where bug reports for this package should be sent. */ /* Define to the address where bug reports for this package should be sent. */
#undef PACKAGE_BUGREPORT #undef PACKAGE_BUGREPORT
...@@ -588,6 +591,9 @@ ...@@ -588,6 +591,9 @@
/* Define to 1 if you have the ANSI C header files. */ /* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS #undef STDC_HEADERS
/* Define if strerror is not thread safe */
#undef STRERROR_THREADSAFE
/* Define to 1 if your <sys/time.h> declares `struct tm'. */ /* Define to 1 if your <sys/time.h> declares `struct tm'. */
#undef TM_IN_SYS_TIME #undef TM_IN_SYS_TIME
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* *
* $PostgreSQL: pgsql/src/port/thread.c,v 1.14 2003/11/29 22:41:31 pgsql Exp $ * $PostgreSQL: pgsql/src/port/thread.c,v 1.15 2004/02/11 21:44:06 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
* strerror(). Other operating systems use pthread_setspecific() * strerror(). Other operating systems use pthread_setspecific()
* and pthread_getspecific() internally to allow standard library * and pthread_getspecific() internally to allow standard library
* functions to return static data to threaded applications. And some * functions to return static data to threaded applications. And some
* operating systems have neither, meaning we have to do our own locking. * operating systems have neither.
* *
* Additional confusion exists because many operating systems that * Additional confusion exists because many operating systems that
* use pthread_setspecific/pthread_getspecific() also have *_r versions * use pthread_setspecific/pthread_getspecific() also have *_r versions
...@@ -50,18 +50,13 @@ ...@@ -50,18 +50,13 @@
* *
* The current setup is to try threading in this order: * The current setup is to try threading in this order:
* *
* use non-*_r function names if they are all thread-safe * use *_r function names if they exit
* (NEED_REENTRANT_FUNCS=no) * (*_THREADSAFE=ye)
* use *_r functions if they exist (configure test) * use non-*_r functions if they are thread-safe
* do our own locking and copying of non-threadsafe functions
*
* The disadvantage of the last option is not the thread overhead but
* the fact that all function calls are serialized, and with gethostbyname()
* requiring a DNS lookup, that could be slow.
* *
* One thread-safe solution for gethostbyname() might be to use getaddrinfo(). * One thread-safe solution for gethostbyname() might be to use getaddrinfo().
* *
* See src/tools/thread to see if your operating system has thread-safe * Run src/tools/thread to see if your operating system has thread-safe
* non-*_r functions. * non-*_r functions.
*/ */
...@@ -73,7 +68,7 @@ ...@@ -73,7 +68,7 @@
char * char *
pqStrerror(int errnum, char *strerrbuf, size_t buflen) pqStrerror(int errnum, char *strerrbuf, size_t buflen)
{ {
#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(NEED_REENTRANT_FUNCS) && defined(HAVE_STRERROR_R) #if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(HAVE_STRERROR_R)
/* reentrant strerror_r is available */ /* reentrant strerror_r is available */
/* some early standards had strerror_r returning char * */ /* some early standards had strerror_r returning char * */
strerror_r(errnum, strerrbuf, buflen); strerror_r(errnum, strerrbuf, buflen);
...@@ -81,18 +76,13 @@ pqStrerror(int errnum, char *strerrbuf, size_t buflen) ...@@ -81,18 +76,13 @@ pqStrerror(int errnum, char *strerrbuf, size_t buflen)
#else #else
#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(NEED_REENTRANT_FUNCS) && !defined(HAVE_STRERROR_R) #if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && !defined(STRERROR_THREADSAFE)
static pthread_mutex_t strerror_lock = PTHREAD_MUTEX_INITIALIZER; #error This platform can not create a thread-safe version because strerror is not thread-safe and there is no reentrant version
pthread_mutex_lock(&strerror_lock);
#endif #endif
/* no strerror_r() available, just use strerror */ /* no strerror_r() available, just use strerror */
StrNCpy(strerrbuf, strerror(errnum), buflen); StrNCpy(strerrbuf, strerror(errnum), buflen);
#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(NEED_REENTRANT_FUNCS) && !defined(HAVE_STRERROR_R)
pthread_mutex_unlock(&strerror_lock);
#endif
return strerrbuf; return strerrbuf;
#endif #endif
} }
...@@ -106,7 +96,7 @@ int ...@@ -106,7 +96,7 @@ int
pqGetpwuid(uid_t uid, struct passwd *resultbuf, char *buffer, pqGetpwuid(uid_t uid, struct passwd *resultbuf, char *buffer,
size_t buflen, struct passwd **result) size_t buflen, struct passwd **result)
{ {
#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(NEED_REENTRANT_FUNCS) && defined(HAVE_GETPWUID_R) #if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(HAVE_GETPWUID_R)
/* /*
* Early POSIX draft of getpwuid_r() returns 'struct passwd *'. * Early POSIX draft of getpwuid_r() returns 'struct passwd *'.
* getpwuid_r(uid, resultbuf, buffer, buflen) * getpwuid_r(uid, resultbuf, buffer, buflen)
...@@ -117,53 +107,14 @@ pqGetpwuid(uid_t uid, struct passwd *resultbuf, char *buffer, ...@@ -117,53 +107,14 @@ pqGetpwuid(uid_t uid, struct passwd *resultbuf, char *buffer,
#else #else
#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(NEED_REENTRANT_FUNCS) && !defined(HAVE_GETPWUID_R) #if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && !defined(GETPWUID_THREADSAFE)
static pthread_mutex_t getpwuid_lock = PTHREAD_MUTEX_INITIALIZER; #error This platform can not create a thread-safe version because getpwuid is not thread-safe and there is no reentrant version
pthread_mutex_lock(&getpwuid_lock);
#endif #endif
/* no getpwuid_r() available, just use getpwuid() */ /* no getpwuid_r() available, just use getpwuid() */
*result = getpwuid(uid); *result = getpwuid(uid);
#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(NEED_REENTRANT_FUNCS) && !defined(HAVE_GETPWUID_R)
/* Use 'buffer' memory for storage of strings used by struct passwd */
if (*result &&
strlen((*result)->pw_name) + 1 +
strlen((*result)->pw_passwd) + 1 +
strlen((*result)->pw_gecos) + 1 +
/* skip class if it exists */
strlen((*result)->pw_dir) + 1 +
strlen((*result)->pw_shell) + 1 <= buflen)
{
memcpy(resultbuf, *result, sizeof(struct passwd));
strcpy(buffer, (*result)->pw_name);
resultbuf->pw_name = buffer;
buffer += strlen(resultbuf->pw_name) + 1;
strcpy(buffer, (*result)->pw_passwd);
resultbuf->pw_passwd = buffer;
buffer += strlen(resultbuf->pw_passwd) + 1;
strcpy(buffer, (*result)->pw_gecos);
resultbuf->pw_gecos = buffer;
buffer += strlen(resultbuf->pw_gecos) + 1;
strcpy(buffer, (*result)->pw_dir);
resultbuf->pw_dir = buffer;
buffer += strlen(resultbuf->pw_dir) + 1;
strcpy(buffer, (*result)->pw_shell);
resultbuf->pw_shell = buffer;
buffer += strlen(resultbuf->pw_shell) + 1;
*result = resultbuf;
}
else
{
*result = NULL;
errno = ERANGE;
}
pthread_mutex_unlock(&getpwuid_lock);
#endif
#endif #endif
return (*result == NULL) ? -1 : 0; return (*result == NULL) ? -1 : 0;
} }
#endif #endif
...@@ -181,7 +132,7 @@ pqGethostbyname(const char *name, ...@@ -181,7 +132,7 @@ pqGethostbyname(const char *name,
struct hostent **result, struct hostent **result,
int *herrno) int *herrno)
{ {
#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(NEED_REENTRANT_FUNCS) && defined(HAVE_GETHOSTBYNAME_R) #if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(HAVE_GETHOSTBYNAME_R)
/* /*
* broken (well early POSIX draft) gethostbyname_r() which returns * broken (well early POSIX draft) gethostbyname_r() which returns
* 'struct hostent *' * 'struct hostent *'
...@@ -191,87 +142,16 @@ pqGethostbyname(const char *name, ...@@ -191,87 +142,16 @@ pqGethostbyname(const char *name,
#else #else
#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(NEED_REENTRANT_FUNCS) && !defined(HAVE_GETHOSTBYNAME_R) #if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && !defined(GETHOSTBYNAME_THREADSAFE)
static pthread_mutex_t gethostbyname_lock = PTHREAD_MUTEX_INITIALIZER; #error This platform can not create a thread-safe version because getaddrinfo is not thread-safe and there is no reentrant version
pthread_mutex_lock(&gethostbyname_lock);
#endif #endif
/* no gethostbyname_r(), just use gethostbyname() */ /* no gethostbyname_r(), just use gethostbyname() */
*result = gethostbyname(name); *result = gethostbyname(name);
#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(NEED_REENTRANT_FUNCS) && !defined(HAVE_GETHOSTBYNAME_R)
/*
* Use 'buffer' memory for storage of structures used by struct hostent.
* The layout is:
*
* addr pointers
* alias pointers
* addr structures
* alias structures
* name
*/
if (*result)
{
int i, pointers = 2 /* for nulls */, len = 0;
char **pbuffer;
for (i = 0; (*result)->h_addr_list[i]; i++, pointers++)
len += (*result)->h_length;
for (i = 0; (*result)->h_aliases[i]; i++, pointers++)
len += (*result)->h_length;
if (pointers * sizeof(char *) + MAXALIGN(len) + strlen((*result)->h_name) + 1 <= buflen)
{
memcpy(resultbuf, *result, sizeof(struct hostent));
pbuffer = (char **)buffer;
resultbuf->h_addr_list = pbuffer;
buffer += pointers * sizeof(char *);
for (i = 0; (*result)->h_addr_list[i]; i++, pbuffer++)
{
memcpy(buffer, (*result)->h_addr_list[i], (*result)->h_length);
resultbuf->h_addr_list[i] = buffer;
buffer += (*result)->h_length;
}
resultbuf->h_addr_list[i] = NULL;
pbuffer++;
resultbuf->h_aliases = pbuffer;
for (i = 0; (*result)->h_aliases[i]; i++, pbuffer++)
{
memcpy(buffer, (*result)->h_aliases[i], (*result)->h_length);
resultbuf->h_aliases[i] = buffer;
buffer += (*result)->h_length;
}
resultbuf->h_aliases[i] = NULL;
pbuffer++;
/* Place at end for cleaner alignment */
buffer = MAXALIGN(buffer);
strcpy(buffer, (*result)->h_name);
resultbuf->h_name = buffer;
buffer += strlen(resultbuf->h_name) + 1;
*result = resultbuf;
}
else
{
*result = NULL;
errno = ERANGE;
}
}
#endif
if (*result != NULL) if (*result != NULL)
*herrno = h_errno; *herrno = h_errno;
#if defined(FRONTEND) && defined(ENABLE_THREAD_SAFETY) && defined(NEED_REENTRANT_FUNCS) && !defined(HAVE_GETHOSTBYNAME_R)
pthread_mutex_unlock(&gethostbyname_lock);
#endif
if (*result != NULL) if (*result != NULL)
return 0; return 0;
else else
......
...@@ -3,4 +3,7 @@ case $host_os in ...@@ -3,4 +3,7 @@ case $host_os in
esac esac
THREAD_SUPPORT=yes THREAD_SUPPORT=yes
NEED_REENTRANT_FUNCS=no # verified 4.3 2003-09-26 # verified 4.3.1 2004-02-11
STRERROR_THREADSAFE=yes
GETPWUID_THREADSAFE=yes
GETHOSTBYNAME_THREADSAFE=yes
...@@ -2,8 +2,7 @@ case $host_cpu in ...@@ -2,8 +2,7 @@ case $host_cpu in
alpha*) CFLAGS="-O";; # alpha has problems with -O2 alpha*) CFLAGS="-O";; # alpha has problems with -O2
esac esac
THREAD_SUPPORT=yes # tools/thread/thread_test must be run
NEED_REENTRANT_FUNCS=yes
THREAD_CPPFLAGS="-D_THREAD_SAFE" THREAD_CPPFLAGS="-D_THREAD_SAFE"
case $host_os in case $host_os in
freebsd2*|freebsd3*|freebsd4*) THREAD_LIBS="-pthread";; freebsd2*|freebsd3*|freebsd4*) THREAD_LIBS="-pthread";;
......
# Force _GNU_SOURCE on; plperl is broken with Perl 5.8.0 otherwise # Force _GNU_SOURCE on; plperl is broken with Perl 5.8.0 otherwise
CPPFLAGS="-D_GNU_SOURCE" CPPFLAGS="-D_GNU_SOURCE"
THREAD_SUPPORT=yes # tools/thread/thread_test must be run
NEED_REENTRANT_FUNCS=yes # Debian kernel 2.2 2003-09-27
THREAD_CPPFLAGS="-D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS" THREAD_CPPFLAGS="-D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS"
THREAD_LIBS="-lpthread" THREAD_LIBS="-lpthread"
THREAD_SUPPORT=yes # tools/thread/thread_test must be run
NEED_REENTRANT_FUNCS=yes # 1.6 2003-09-14
...@@ -3,8 +3,7 @@ if test "$GCC" != yes ; then ...@@ -3,8 +3,7 @@ if test "$GCC" != yes ; then
CFLAGS="-O -ieee" CFLAGS="-O -ieee"
fi fi
THREAD_SUPPORT=yes # tools/thread/thread_test must be run
NEED_REENTRANT_FUNCS=no # 4.0 2003-09-13
if test "$GCC" = yes if test "$GCC" = yes
then THREAD_LIBS="-pthread" then THREAD_LIBS="-pthread"
else THREAD_CPPFLAGS="-pthread" else THREAD_CPPFLAGS="-pthread"
......
...@@ -9,8 +9,7 @@ case $host in ...@@ -9,8 +9,7 @@ case $host in
i?86-*-solaris*) need_tas=yes; tas_file=solaris_i386.s ;; i?86-*-solaris*) need_tas=yes; tas_file=solaris_i386.s ;;
esac esac
THREAD_SUPPORT=yes # tools/thread/thread_test must be run
NEED_REENTRANT_FUNCS=yes # 5.6 2003-09-13
if test "$GCC" = yes if test "$GCC" = yes
then THREAD_LIBS="-pthread" then THREAD_LIBS="-pthread"
else THREAD_CPPFLAGS="-mt" else THREAD_CPPFLAGS="-mt"
......
...@@ -24,6 +24,5 @@ __EOF__ ...@@ -24,6 +24,5 @@ __EOF__
THREAD_CPPFLAGS="-K pthread" THREAD_CPPFLAGS="-K pthread"
fi fi
THREAD_SUPPORT=yes # tools/thread/thread_test must be run
NEED_REENTRANT_FUNCS=no # verified 7.1.3 2003-09-03
THREAD_CPPFLAGS="$THREAD_CPPFLAGS -D_REENTRANT" THREAD_CPPFLAGS="$THREAD_CPPFLAGS -D_REENTRANT"
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $PostgreSQL: pgsql/src/tools/thread/thread_test.c,v 1.6 2003/12/19 23:29:15 momjian Exp $ * $PostgreSQL: pgsql/src/tools/thread/thread_test.c,v 1.7 2004/02/11 21:44:06 momjian Exp $
* *
* This program tests to see if your standard libc functions use * This program tests to see if your standard libc functions use
* pthread_setspecific()/pthread_getspecific() to be thread-safe. * pthread_setspecific()/pthread_getspecific() to be thread-safe.
...@@ -33,16 +33,14 @@ ...@@ -33,16 +33,14 @@
void func_call_1(void); void func_call_1(void);
void func_call_2(void); void func_call_2(void);
#ifndef HAVE_GETADDRINFO char *strerror_p1;
struct hostent *hostent_p1; char *strerror_p2;
struct hostent *hostent_p2;
#endif
struct passwd *passwd_p1; struct passwd *passwd_p1;
struct passwd *passwd_p2; struct passwd *passwd_p2;
char *strerror_p1; struct hostent *hostent_p1;
char *strerror_p2; struct hostent *hostent_p2;
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
...@@ -64,48 +62,34 @@ defines to your template/$port file before compiling this program.\n\n" ...@@ -64,48 +62,34 @@ defines to your template/$port file before compiling this program.\n\n"
pthread_join(thread1, NULL); pthread_join(thread1, NULL);
pthread_join(thread2, NULL); pthread_join(thread2, NULL);
#ifndef HAVE_GETADDRINFO printf("Add this to your template/$port file:\n\n");
if (hostent_p1 == hostent_p2)
printf("Your gethostbyname() is _not_ thread-safe\n"); if (strerror_p1 != strerror_p2)
#endif printf("STRERROR_THREADSAFE=yes\n");
if (passwd_p1 == passwd_p2)
printf("Your getpwuid() is _not_ thread-safe\n");
if (strerror_p1 == strerror_p2)
printf("Your strerror() is _not_ thread-safe\n");
if (
#ifndef HAVE_GETADDRINFO
hostent_p1 != hostent_p2 &&
#endif
passwd_p1 != passwd_p2 &&
strerror_p1 != strerror_p2)
{
printf("All your non-*_r functions are thread-safe.\n");
printf("Add this to your template/$port file:\n\n");
printf("NEED_REENTRANT_FUNCS=no\n");
}
else else
{ printf("STRERROR_THREADSAFE=no\n");
printf("Not all non-*_r functions are thread-safe.\n");
printf("Add this to your template/$port file:\n\n"); if (passwd_p1 != passwd_p2)
printf("NEED_REENTRANT_FUNCS=yes\n"); printf("GETPWUID_THREADSAFE=yes\n");
} else
printf("GETPWUID_THREADSAFE=no\n");
if (hostent_p1 != hostent_p2)
printf("GETHOSTBYNAME_THREADSAFE=yes\n");
else
printf("GETHOSTBYNAME_THREADSAFE=no\n");
return 0; return 0;
} }
void func_call_1(void) { void func_call_1(void) {
void *p; void *p;
#ifndef HAVE_GETADDRINFO strerror_p1 = strerror(EACCES);
hostent_p1 = gethostbyname("yahoo.com"); /*
p = gethostbyname("slashdot.org"); * If strerror() uses sys_errlist, the pointer might change for different
if (hostent_p1 != p) * errno values, so we don't check to see if it varies within the thread.
{ */
printf("Your gethostbyname() changes the static memory area between calls\n");
hostent_p1 = NULL; /* force thread-safe failure report */
}
#endif
passwd_p1 = getpwuid(0); passwd_p1 = getpwuid(0);
p = getpwuid(1); p = getpwuid(1);
...@@ -115,26 +99,24 @@ void func_call_1(void) { ...@@ -115,26 +99,24 @@ void func_call_1(void) {
passwd_p1 = NULL; /* force thread-safe failure report */ passwd_p1 = NULL; /* force thread-safe failure report */
} }
strerror_p1 = strerror(EACCES); hostent_p1 = gethostbyname("yahoo.com");
/* p = gethostbyname("slashdot.org");
* If strerror() uses sys_errlist, the pointer might change for different if (hostent_p1 != p)
* errno values, so we don't check to see if it varies within the thread. {
*/ printf("Your gethostbyname() changes the static memory area between calls\n");
hostent_p1 = NULL; /* force thread-safe failure report */
}
} }
void func_call_2(void) { void func_call_2(void) {
void *p; void *p;
#ifndef HAVE_GETADDRINFO strerror_p2 = strerror(EINVAL);
hostent_p2 = gethostbyname("google.com"); /*
p = gethostbyname("postgresql.org"); * If strerror() uses sys_errlist, the pointer might change for different
if (hostent_p2 != p) * errno values, so we don't check to see if it varies within the thread.
{ */
printf("Your gethostbyname() changes the static memory area between calls\n");
hostent_p2 = NULL; /* force thread-safe failure report */
}
#endif
passwd_p2 = getpwuid(2); passwd_p2 = getpwuid(2);
p = getpwuid(3); p = getpwuid(3);
...@@ -144,9 +126,11 @@ void func_call_2(void) { ...@@ -144,9 +126,11 @@ void func_call_2(void) {
passwd_p2 = NULL; /* force thread-safe failure report */ passwd_p2 = NULL; /* force thread-safe failure report */
} }
strerror_p2 = strerror(EINVAL); hostent_p2 = gethostbyname("google.com");
/* p = gethostbyname("postgresql.org");
* If strerror() uses sys_errlist, the pointer might change for different if (hostent_p2 != p)
* errno values, so we don't check to see if it varies within the thread. {
*/ printf("Your gethostbyname() changes the static memory area between calls\n");
hostent_p2 = NULL; /* force thread-safe failure report */
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment