1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
/* $Xorg: greet.h,v 1.4 2001/02/09 02:05:40 xorgcvs Exp $ */
/*
Copyright 1994, 1998 The Open Group
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.
The above copyright notice and this permission notice 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 OPEN GROUP 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.
Except as contained in this notice, the name of The Open Group shall
not be used in advertising or otherwise to promote the sale, use or
other dealings in this Software without prior written authorization
from The Open Group.
*/
/* $XFree86: xc/programs/xdm/greet.h,v 1.8 2001/12/14 20:01:22 dawes Exp $ */
/*
* greet.h - interface to xdm's dynamically-loadable modular greeter
*/
#include <X11/Xlib.h>
/*
* Do this rather than break a build over a const-mismatch
*/
#if defined(__linux__) || defined(CSRG_BASED)
#define CRYPT_ARGS const char *s1, const char *s2
#define GETSPNAM_ARGS const char *name
#define GETPWNAM_ARGS const char *name
#else
#define CRYPT_ARGS /*unknown*/
#define GETSPNAM_ARGS /*unknown*/
#define GETPWNAM_ARGS /*unknown*/
#endif
#if defined(__FreeBSD__) || defined(__bsdi__) || defined(__osf__)
#define SETGRENT_TYPE int
#else
#define SETGRENT_TYPE void
#endif
struct dlfuncs {
int (*_PingServer)(struct display *d, Display *alternateDpy);
void (*_SessionPingFailed)(struct display *d);
void (*_WDMDebug)(char * fmt, ...);
void (*_RegisterCloseOnFork)(int fd);
void (*_SecureDisplay)(struct display *d, Display *dpy);
void (*_UnsecureDisplay)(struct display *d, Display *dpy);
void (*_ClearCloseOnFork)(int fd);
void (*_SetupDisplay)(struct display *d);
void (*_WDMError)(char * fmt, ...);
void (*_SessionExit)(struct display *d, int status, int removeAuth);
void (*_DeleteXloginResources)(struct display *d, Display *dpy);
int (*_source)(char **environ, char *file);
char **(*_defaultEnv)(void);
char **(*_WDMSetEnv)(char **e, const char *name, const char *value);
char **(*_WDMPutEnv)(char **env, const char *string);
char **(*_parseArgs)(char **argv, char *string);
void (*_WDMPrintEnv)(char **e);
char **(*_systemEnv)(struct display *d, char *user, char *home);
SETGRENT_TYPE (*_setgrent)(void); /* no longer used */
struct group *(*_getgrent)(void); /* no longer used */
void (*_endgrent)(void); /* no longer used */
#ifdef HAVE_SHADOW_H
struct spwd *(*_getspnam)(GETSPNAM_ARGS);
void (*_endspent)(void);
#endif
struct passwd *(*_getpwnam)(GETPWNAM_ARGS);
#ifdef linux
void (*_endpwent)(void);
#endif
char *(*_crypt)(CRYPT_ARGS);
#ifdef USE_PAM
pam_handle_t **(*_thepamhp)(void);
#endif
};
/*
* Return values for GreetUser();
* Values must be explictly defined because the greet library
* may come from a different vendor.
* Negative values indicate an error.
*/
typedef enum {
Greet_Session_Over = 0, /* session managed and over */
Greet_Success = 1, /* greet succeeded, session not managed */
Greet_Failure = -1 /* greet failed */
} greet_user_rtn;
/*
* GreetUser can either handle the user's session or allow xdm to do it.
* The return or exit status of GreetUser indicates to xdm whether it
* should start a session.
*
* GreetUser is passed the xdm struct display pointer, a pointer to a
* Display, and pointers to greet and verify structs. If it expectes xdm
* to run the session, it fills in the Display pointer and the fields
* of the greet and verify structs.
*
* The verify struct includes the uid, gid, arguments to run the session,
* environment for the session, and environment for startup/reset.
*
* The greet struct includes the user's name and password but these are
* really only needed if xdm is compiled with a user-based authorization
* option such as SECURE_RPC or K5AUTH.
*/
extern greet_user_rtn GreetUser(
#if NeedFunctionPrototypes
struct display *d,
Display **dpy,
struct verify_info *verify,
struct greet_info *greet,
struct dlfuncs *dlfcns
#endif
);
typedef greet_user_rtn (*GreetUserProc)(
#if NeedFunctionPrototypes
struct display *,
Display **,
struct verify_info *,
struct greet_info *,
struct dlfuncs *dlfcns
#endif
);
#ifdef GREET_LIB
/*
* The greeter uses some symbols from the main xdm executable. Since some
* dynamic linkers are broken, we need to fix things up so that the symbols
* are referenced indirectly through function pointers. The definitions
* here, are used to hold the pointers to the functions in the main xdm
* executable. The pointers are filled in when the GreetUser function is
* called, with the pointer values passed as a paramter.
*/
extern int (*__xdm_PingServer)(struct display *d, Display *alternateDpy);
extern void (*__xdm_SessionPingFailed)(struct display *d);
extern void (*__xdm_Debug)(char * fmt, ...);
extern void (*__xdm_RegisterCloseOnFork)(int fd);
extern void (*__xdm_SecureDisplay)(struct display *d, Display *dpy);
extern void (*__xdm_UnsecureDisplay)(struct display *d, Display *dpy);
extern void (*__xdm_ClearCloseOnFork)(int fd);
extern void (*__xdm_SetupDisplay)(struct display *d);
extern void (*__xdm_LogError)(char * fmt, ...);
extern void (*__xdm_SessionExit)(struct display *d, int status, int removeAuth);
extern void (*__xdm_DeleteXloginResources)(struct display *d, Display *dpy);
extern int (*__xdm_source)(char **environ, char *file);
extern char **(*__xdm_defaultEnv)(void);
extern char **(*__xdm_WDMSetEnv)(char **env, char *name, char *value);
extern char **(*__xdm_WDMPutEnv)(char **env, const char *string);
extern char **(*__xdm_parseArgs)(char **argv, char *string);
extern void (*__xdm_WDMPrintEnv)(char **e);
extern char **(*__xdm_systemEnv)(struct display *d, char *user, char *home);
extern void (*__xdm_LogOutOfMem)(char * fmt, ...);
extern void (*__xdm_setgrent)(void);
extern struct group *(*__xdm_getgrent)(void);
extern void (*__xdm_endgrent)(void);
#ifdef HAVE_SHADOW_H
extern struct spwd *(*__xdm_getspnam)(GETSPNAM_ARGS);
extern void (*__xdm_endspent)(void);
#endif
extern struct passwd *(*__xdm_getpwnam)(GETPWNAM_ARGS);
#ifdef linux
extern void (*__xdm_endpwent)(void);
#endif
extern char *(*__xdm_crypt)(CRYPT_ARGS);
#ifdef USE_PAM
extern pam_handle_t **(*__xdm_thepamhp)(void);
#endif
/*
* Force the shared library to call through the function pointer
* initialized during the initial call into the library.
*/
#define PingServer (*__xdm_PingServer)
#define SessionPingFailed (*__xdm_SessionPingFailed)
#define Debug (*__xdm_Debug)
#define RegisterCloseOnFork (*__xdm_RegisterCloseOnFork)
#define SecureDisplay (*__xdm_SecureDisplay)
#define UnsecureDisplay (*__xdm_UnsecureDisplay)
#define ClearCloseOnFork (*__xdm_ClearCloseOnFork)
#define SetupDisplay (*__xdm_SetupDisplay)
#define LogError (*__xdm_LogError)
#define SessionExit (*__xdm_SessionExit)
#define DeleteXloginResources (*__xdm_DeleteXloginResources)
#define source (*__xdm_source)
#define defaultEnv (*__xdm_defaultEnv)
#define WDMSetEnv (*__xdm_WDMSetEnv)
#define WDMPutEnv (*__xdm_WDMPutEnv)
#define parseArgs (*__xdm_parseArgs)
#define WDMPrintEnv (*__xdm_WDMPrintEnv)
#define systemEnv (*__xdm_systemEnv)
#define LogOutOfMem (*__xdm_LogOutOfMem)
#define setgrent (*__xdm_setgrent)
#define getgrent (*__xdm_getgrent)
#define endgrent (*__xdm_endgrent)
#ifdef HAVE_SHADOW_H
#define getspnam (*__xdm_getspnam)
#define endspent (*__xdm_endspent)
#endif
#ifdef linux
#define endpwent (*__xdm_endpwent)
#endif
#define getpwnam (*__xdm_getpwnam)
#define crypt (*__xdm_crypt)
#define thepamhp (*__xdm_thepamhp)
#endif /* GREET_LIB */
|