From a859b93ff583300349ee0b7fb8231cf6c387e269 Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Mon, 16 Feb 2015 22:22:29 -0600 Subject: disable system issetugid on OS X since it is not fork-safe Noticed while testing similar code for AIX. ok beck@ --- configure.ac | 5 +++++ crypto/Makefile.am | 3 +++ crypto/compat/issetugid_osx.c | 16 ++++++++++++++++ 3 files changed, 24 insertions(+) create mode 100644 crypto/compat/issetugid_osx.c diff --git a/configure.ac b/configure.ac index 46e9a40..391b232 100644 --- a/configure.ac +++ b/configure.ac @@ -226,6 +226,11 @@ AM_CONDITIONAL([HAVE_ARC4RANDOM_BUF], -a "x$HOST_OS" != xnetbsd \ -a "x$ac_cv_func_arc4random_buf" = xyes]) +# overrides for issetugid implementations with known issues +AM_CONDITIONAL([HAVE_ISSETUGID], + [test "x$HOST_OS" != xdarwin + -a "x$ac_cv_func_issetugid" = xyes]) + AC_CACHE_CHECK([whether va_copy exists], ac_cv_have_va_copy, [ AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #include diff --git a/crypto/Makefile.am b/crypto/Makefile.am index c7d0639..5861a55 100644 --- a/crypto/Makefile.am +++ b/crypto/Makefile.am @@ -103,6 +103,9 @@ endif if HOST_HPUX libcompat_la_SOURCES += compat/issetugid_hpux.c endif +if HOST_DARWIN +libcompat_la_SOURCES += compat/issetugid_osx.c +endif if HOST_WIN libcompat_la_SOURCES += compat/issetugid_win.c endif diff --git a/crypto/compat/issetugid_osx.c b/crypto/compat/issetugid_osx.c new file mode 100644 index 0000000..ad6cb58 --- /dev/null +++ b/crypto/compat/issetugid_osx.c @@ -0,0 +1,16 @@ +/* + * issetugid implementation for OS X + * Public domain + */ + +#include + +/* + * OS X has issetugid, but it is not fork-safe as of version 10.10. + * See this Solaris report for test code that fails similarly: + * http://mcarpenter.org/blog/2013/01/15/solaris-issetugid%282%29-bug + */ +int issetugid(void) +{ + return 1; +} -- cgit v1.2.3-55-g6feb