dtlogin-userinfo.patch revision 1196
# Copyright (c) 2006, 2011, Oracle and/or its affiliates. All rights reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice (including the next
# paragraph) shall be included in all copies or substantial portions of the
# Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
diff --git a/configure.ac b/configure.ac
index d59ea4a..d960d4c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1464,6 +1464,7 @@ PKG_CHECK_MODULES([XSERVERLIBS], [$REQUIRED_LIBS])
XSERVER_CFLAGS="${XSERVER_CFLAGS} ${XSERVERCFLAGS_CFLAGS}"
XSERVER_LIBS="$DIX_LIB $MI_LIB $OS_LIB"
XSERVER_SYS_LIBS="${XSERVERLIBS_LIBS} ${SYS_LIBS} ${LIBS}"
+XSERVER_SYS_LIBS="${XSERVER_SYS_LIBS} -lproject"
AC_SUBST([XSERVER_LIBS])
AC_SUBST([XSERVER_SYS_LIBS])
diff --git a/dix/main.c b/dix/main.c
index f79e861..148fb08 100644
--- a/dix/main.c
+++ b/dix/main.c
@@ -115,6 +115,11 @@ Equipment Corporation.
#include "dpmsproc.h"
#endif
+#ifdef SUNSOFT
+extern void DtloginInit(void);
+extern void DtloginCloseDown(void);
+#endif /* SUNSOFT */
+
extern void Dispatch(void);
#ifdef XQUARTZ
@@ -165,6 +170,13 @@ int main(int argc, char *argv[], char *envp[])
InitBlockAndWakeupHandlers();
/* Perform any operating system dependent initializations you'd like */
OsInit();
+
+#ifdef SUNSOFT
+ /* Create pipe for dtlogin authentication info before we tell dtlogin
+ we're done and ready for it to run. */
+ DtloginInit ();
+#endif
+
if(serverGeneration == 1)
{
CreateWellKnownSockets();
@@ -294,6 +306,11 @@ int main(int argc, char *argv[], char *envp[])
pthread_mutex_unlock(&serverRunningMutex);
#endif
+#ifdef SUNSOFT
+ /* Return to root privs before calling the rest of close down */
+ DtloginCloseDown ();
+#endif
+
UndisplayDevices();
/* Now free up whatever must be freed */
diff --git a/os/Makefile.am b/os/Makefile.am
index 725691d..c41954d 100644
--- a/os/Makefile.am
+++ b/os/Makefile.am
@@ -41,6 +41,9 @@ if NEED_STRLCAT
libos_la_SOURCES += $(STRLCAT_SRCS)
endif
+libos_la_SOURCES += dtlogin.c
+libos_la_LIBADD += -lproject
+
EXTRA_DIST = $(SECURERPC_SRCS) $(INTERNALMALLOC_SRCS) \
$(XDMCP_SRCS) $(STRLCAT_SRCS)
diff --git a/os/auth.c b/os/auth.c
index 7685751..995235e 100644
--- a/os/auth.c
+++ b/os/auth.c
@@ -290,6 +290,19 @@ AddAuthorization (unsigned name_length, const char *name,
return 0;
}
+#ifdef SUNSOFT
+/* This function is called from dtlogin.c
+ * This is added to do "chmod authorization_file" since
+ * this file is owned by root and we need to change this
+ * to user logged on.
+ */
+const char *
+GetAuthFilename(void)
+{
+ return (authorization_file);
+}
+#endif
+
#ifdef XCSECURITY
XID