mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-22 14:40:22 +01:00
Revert "hardening: Use __secure_getenv if available"
It breaks gnome-keyring-daemon at least in some
configurations; see
https://bugs.freedesktop.org/show_bug.cgi?id=52202#c24
This reverts commit 1a55644375.
This commit is contained in:
parent
f68dbdc3e6
commit
19fa7c547f
2 changed files with 1 additions and 7 deletions
|
|
@ -595,7 +595,7 @@ AC_DEFINE_UNQUOTED([DBUS_USE_SYNC], [$have_sync], [Use the gcc __sync extension]
|
|||
AC_SEARCH_LIBS(socket,[socket network])
|
||||
AC_CHECK_FUNC(gethostbyname,,[AC_CHECK_LIB(nsl,gethostbyname)])
|
||||
|
||||
AC_CHECK_FUNCS(vsnprintf vasprintf nanosleep usleep setenv clearenv unsetenv socketpair getgrouplist fpathconf setrlimit poll setlocale localeconv strtoll strtoull issetugid getresuid secure_getenv __secure_getenv )
|
||||
AC_CHECK_FUNCS(vsnprintf vasprintf nanosleep usleep setenv clearenv unsetenv socketpair getgrouplist fpathconf setrlimit poll setlocale localeconv strtoll strtoull issetugid getresuid)
|
||||
|
||||
AC_CHECK_HEADERS([syslog.h])
|
||||
if test "x$ac_cv_header_syslog_h" = "xyes"; then
|
||||
|
|
|
|||
|
|
@ -182,18 +182,12 @@ _dbus_setenv (const char *varname,
|
|||
const char*
|
||||
_dbus_getenv (const char *varname)
|
||||
{
|
||||
#if defined(HAVE_SECURE_GETENV)
|
||||
return secure_getenv (varname);
|
||||
#elif defined(HAVE___SECURE_GETENV)
|
||||
return __secure_getenv (varname);
|
||||
#else
|
||||
/* Don't respect any environment variables if the current process is
|
||||
* setuid. This is the equivalent of glibc's __secure_getenv().
|
||||
*/
|
||||
if (_dbus_check_setuid ())
|
||||
return NULL;
|
||||
return getenv (varname);
|
||||
#endif
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue