mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-25 15:08:53 +00:00
Merged revisions 296534 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8 ................ r296534 | tilghman | 2010-11-29 01:28:44 -0600 (Mon, 29 Nov 2010) | 20 lines Merged revisions 296533 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.6.2 ........ r296533 | tilghman | 2010-11-29 01:27:09 -0600 (Mon, 29 Nov 2010) | 13 lines I love standards. There are so many to choose from. Except when there isn't one. Linux and *BSD disagree on the elements within the ucred structure. Detect which one is in use on the system. (closes issue #18384) Reported by: bjm Patches: cred-diffs uploaded by bjm (license 473) 20101127__issue18384__1.6.2.diff.txt uploaded by tilghman (license 14) 20101127__issue18384__1.8.diff.txt uploaded by tilghman (license 14) Tested by: tilghman, bjm ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@296535 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
23
configure
vendored
23
configure
vendored
@@ -1,5 +1,5 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# From configure.ac Revision: 293047 .
|
# From configure.ac Revision: 294431 .
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.65 for asterisk trunk.
|
# Generated by GNU Autoconf 2.65 for asterisk trunk.
|
||||||
#
|
#
|
||||||
@@ -12711,6 +12711,27 @@ cat >>confdefs.h <<_ACEOF
|
|||||||
_ACEOF
|
_ACEOF
|
||||||
|
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
ac_fn_c_check_member "$LINENO" "struct ucred" "uid" "ac_cv_member_struct_ucred_uid" "#include <sys/socket.h>
|
||||||
|
"
|
||||||
|
if test "x$ac_cv_member_struct_ucred_uid" = x""yes; then :
|
||||||
|
|
||||||
|
cat >>confdefs.h <<_ACEOF
|
||||||
|
#define HAVE_STRUCT_UCRED_UID 1
|
||||||
|
_ACEOF
|
||||||
|
|
||||||
|
|
||||||
|
fi
|
||||||
|
ac_fn_c_check_member "$LINENO" "struct ucred" "cr_uid" "ac_cv_member_struct_ucred_cr_uid" "#include <sys/socket.h>
|
||||||
|
"
|
||||||
|
if test "x$ac_cv_member_struct_ucred_cr_uid" = x""yes; then :
|
||||||
|
|
||||||
|
cat >>confdefs.h <<_ACEOF
|
||||||
|
#define HAVE_STRUCT_UCRED_CR_UID 1
|
||||||
|
_ACEOF
|
||||||
|
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether time.h and sys/time.h may both be included" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether time.h and sys/time.h may both be included" >&5
|
||||||
|
@@ -489,6 +489,7 @@ AC_TYPE_OFF_T
|
|||||||
AC_TYPE_PID_T
|
AC_TYPE_PID_T
|
||||||
AC_TYPE_SIZE_T
|
AC_TYPE_SIZE_T
|
||||||
AC_CHECK_MEMBERS([struct stat.st_blksize])
|
AC_CHECK_MEMBERS([struct stat.st_blksize])
|
||||||
|
AC_CHECK_MEMBERS([struct ucred.uid, struct ucred.cr_uid], [], [], [#include <sys/socket.h>])
|
||||||
AC_HEADER_TIME
|
AC_HEADER_TIME
|
||||||
AC_STRUCT_TM
|
AC_STRUCT_TM
|
||||||
AC_C_VOLATILE
|
AC_C_VOLATILE
|
||||||
|
@@ -816,6 +816,12 @@
|
|||||||
/* Define to 1 if `st_blksize' is a member of `struct stat'. */
|
/* Define to 1 if `st_blksize' is a member of `struct stat'. */
|
||||||
#undef HAVE_STRUCT_STAT_ST_BLKSIZE
|
#undef HAVE_STRUCT_STAT_ST_BLKSIZE
|
||||||
|
|
||||||
|
/* Define to 1 if `cr_uid' is a member of `struct ucred'. */
|
||||||
|
#undef HAVE_STRUCT_UCRED_CR_UID
|
||||||
|
|
||||||
|
/* Define to 1 if `uid' is a member of `struct ucred'. */
|
||||||
|
#undef HAVE_STRUCT_UCRED_UID
|
||||||
|
|
||||||
/* Define to 1 if you have the mISDN Supplemental Services library. */
|
/* Define to 1 if you have the mISDN Supplemental Services library. */
|
||||||
#undef HAVE_SUPPSERV
|
#undef HAVE_SUPPSERV
|
||||||
|
|
||||||
|
@@ -1202,12 +1202,18 @@ static int read_credentials(int fd, char *buffer, size_t size, struct console *c
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(SO_PEERCRED)
|
#if defined(SO_PEERCRED) && (defined(HAVE_STRUCT_UCRED_UID) || defined(HAVE_STRUCT_UCRED_CR_UID))
|
||||||
if (getsockopt(fd, SOL_SOCKET, SO_PEERCRED, &cred, &len)) {
|
if (getsockopt(fd, SOL_SOCKET, SO_PEERCRED, &cred, &len)) {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
#if defined(HAVE_STRUCT_UCRED_UID)
|
||||||
uid = cred.uid;
|
uid = cred.uid;
|
||||||
gid = cred.gid;
|
gid = cred.gid;
|
||||||
|
#else /* defined(HAVE_STRUCT_UCRED_CR_UID) */
|
||||||
|
uid = cred.cr_uid;
|
||||||
|
gid = cred.cr_gid;
|
||||||
|
#endif /* defined(HAVE_STRUCT_UCRED_UID) */
|
||||||
|
|
||||||
#elif defined(HAVE_GETPEEREID)
|
#elif defined(HAVE_GETPEEREID)
|
||||||
if (getpeereid(fd, &uid, &gid)) {
|
if (getpeereid(fd, &uid, &gid)) {
|
||||||
return result;
|
return result;
|
||||||
|
Reference in New Issue
Block a user