/* $Xorg: greet.c,v 1.4 2001/02/09 02:05:41 xorgcvs Exp $ */ /* $XdotOrg: app/xdm/greeter/greet.c,v 1.5 2006/06/03 01:13:44 alanc Exp $ */ /* Copyright 1988, 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. */ /* Copyright 2006 Sun Microsystems, Inc. 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, and/or sell copies of the Software, and to permit persons * to whom the Software is furnished to do so, provided that the above * copyright notice(s) and this permission notice appear in all copies of * the Software and that both the above copyright notice(s) and this * permission notice appear in supporting documentation. * * 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 * OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR * HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL * INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * * Except as contained in this notice, the name of a copyright holder * shall not be used in advertising or otherwise to promote the sale, use * or other dealings in this Software without prior written authorization * of the copyright holder. */ /* $XFree86: xc/programs/xdm/greeter/greet.c,v 3.16tsi Exp $ */ /* * xdm - display manager daemon * Author: Keith Packard, X Consortium * * widget to get username/password * */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include #ifdef USE_XINERAMA #include #endif #include "dm.h" #include "dm_error.h" #include "greet.h" #include "Login.h" #ifdef __OpenBSD__ #include #endif #if defined(SECURE_RPC) && defined(sun) /* Go figure, there's no getdomainname() prototype available */ extern int getdomainname(char *name, size_t len); #endif #ifdef GREET_LIB /* * Function pointers filled in by the initial call ito the library */ int (*__xdm_PingServer)(struct display *d, Display *alternateDpy) = NULL; void (*__xdm_SessionPingFailed)(struct display *d) = NULL; void (*__xdm_Debug)(char * fmt, ...) = NULL; void (*__xdm_RegisterCloseOnFork)(int fd) = NULL; void (*__xdm_SecureDisplay)(struct display *d, Display *dpy) = NULL; void (*__xdm_UnsecureDisplay)(struct display *d, Display *dpy) = NULL; void (*__xdm_ClearCloseOnFork)(int fd) = NULL; void (*__xdm_SetupDisplay)(struct display *d) = NULL; void (*__xdm_LogError)(char * fmt, ...) = NULL; void (*__xdm_SessionExit)(struct display *d, int status, int removeAuth) = NULL; void (*__xdm_DeleteXloginResources)(struct display *d, Display *dpy) = NULL; int (*__xdm_source)(char **environ, char *file) = NULL; char **(*__xdm_defaultEnv)(void) = NULL; char **(*__xdm_setEnv)(char **e, char *name, char *value) = NULL; char **(*__xdm_putEnv)(const char *string, char **env) = NULL; char **(*__xdm_parseArgs)(char **argv, char *string) = NULL; void (*__xdm_printEnv)(char **e) = NULL; char **(*__xdm_systemEnv)(struct display *d, char *user, char *home) = NULL; void (*__xdm_LogOutOfMem)(char * fmt, ...) = NULL; void (*__xdm_setgrent)(void) = NULL; struct group *(*__xdm_getgrent)(void) = NULL; void (*__xdm_endgrent)(void) = NULL; #ifdef USESHADOW struct spwd *(*__xdm_getspnam)(GETSPNAM_ARGS) = NULL; # ifndef QNX4 void (*__xdm_endspent)(void) = NULL; # endif /* QNX4 doesn't use endspent */ #endif struct passwd *(*__xdm_getpwnam)(GETPWNAM_ARGS) = NULL; #if defined(linux) || defined(__GLIBC__) void (*__xdm_endpwent)(void) = NULL; #endif char *(*__xdm_crypt)(CRYPT_ARGS) = NULL; #ifdef USE_PAM pam_handle_t **(*__xdm_thepamhp)(void) = NULL; #endif #endif #ifdef SECURE_RPC #include #include #endif #ifdef K5AUTH #include #endif extern Display *dpy; static int done, code; #ifndef USE_PAM static char name[NAME_LEN], password[PASSWORD_LEN]; #endif static Widget toplevel; static Widget login; static XtAppContext context; static XtIntervalId pingTimeout; #ifdef USE_PAM static int pamconv(int num_msg, #ifndef sun const #endif struct pam_message **msg, struct pam_response **response, void *appdata_ptr); # define PAM_ERROR_PRINT(pamfunc, pamh) \ LogError("%s failure: %s\n", pamfunc, pam_strerror(pamh, pam_error)) struct myconv_data { struct display *d; struct greet_info *greet; char *username_display; }; #endif /*ARGSUSED*/ static void GreetPingServer ( XtPointer closure, XtIntervalId *intervalId) { struct display *d; d = (struct display *) closure; if (!PingServer (d, XtDisplay (toplevel))) SessionPingFailed (d); pingTimeout = XtAppAddTimeOut (context, d->pingInterval * 60 * 1000, GreetPingServer, (closure)); } /*ARGSUSED*/ static void GreetDone ( Widget w, LoginData *data, int status) { Debug ("GreetDone: %s, (password is %d long)\n", data->name, strlen (data->passwd)); switch (status) { case NOTIFY_OK: #ifndef USE_PAM strncpy (name, data->name, sizeof(name)); name[sizeof(name)-1] = '\0'; strncpy (password, data->passwd, sizeof(password)); password[sizeof(password)-1] = '\0'; #endif code = 0; done = 1; break; case NOTIFY_ABORT: Debug ("RESERVER_DISPLAY\n"); code = RESERVER_DISPLAY; done = 1; break; case NOTIFY_RESTART: Debug ("REMANAGE_DISPLAY\n"); code = REMANAGE_DISPLAY; done = 1; break; case NOTIFY_ABORT_DISPLAY: Debug ("UNMANAGE_DISPLAY\n"); code = UNMANAGE_DISPLAY; done = 1; break; } #ifndef USE_PAM if (done) { bzero (data->name, NAME_LEN); bzero (data->passwd, PASSWORD_LEN); } #endif } static Display * InitGreet (struct display *d) { Arg arglist[10]; int i; static int argc; Screen *scrn; static char *argv[] = { "xlogin", NULL }; Display *dpy; #ifdef USE_XINERAMA XineramaScreenInfo *screens; int s_num; #endif Debug ("greet %s\n", d->name); argc = 1; XtToolkitInitialize (); context = XtCreateApplicationContext(); dpy = XtOpenDisplay (context, d->name, "xlogin", "Xlogin", NULL, 0, &argc, argv); if (!dpy) return NULL; #ifdef XKB { int opcode, evbase, errbase, majret, minret; unsigned int value = XkbPCF_GrabsUseXKBStateMask; if (XkbQueryExtension (dpy, &opcode, &evbase, &errbase, &majret, &minret)) { if (!XkbSetPerClientControls (dpy, XkbPCF_GrabsUseXKBStateMask, &value)) LogError ("%s\n", "SetPerClientControls failed"); } } #endif RegisterCloseOnFork (ConnectionNumber (dpy)); SecureDisplay (d, dpy); i = 0; scrn = XDefaultScreenOfDisplay(dpy); XtSetArg(arglist[i], XtNscreen, scrn); i++; XtSetArg(arglist[i], XtNargc, argc); i++; XtSetArg(arglist[i], XtNargv, argv); i++; toplevel = XtAppCreateShell ((String) NULL, "Xlogin", applicationShellWidgetClass, dpy, arglist, i); i = 0; XtSetArg (arglist[i], XtNnotifyDone, (XtPointer)GreetDone); i++; if (!d->authorize || d->authorizations || !d->authComplain) { XtSetArg (arglist[i], XtNsecureSession, True); i++; } login = XtCreateManagedWidget ("login", loginWidgetClass, toplevel, arglist, i); XtRealizeWidget (toplevel); #ifdef USE_XINERAMA if ( XineramaIsActive(dpy) && (screens = XineramaQueryScreens(dpy, &s_num)) != NULL ) { XWarpPointer(dpy, None, XRootWindowOfScreen (scrn), 0, 0, 0, 0, screens[0].x_org + screens[0].width / 2, screens[0].y_org + screens[0].height / 2); XFree(screens); } else #endif XWarpPointer(dpy, None, XRootWindowOfScreen (scrn), 0, 0, 0, 0, XWidthOfScreen(scrn) / 2, XHeightOfScreen(scrn) / 2); if (d->pingInterval) { pingTimeout = XtAppAddTimeOut (context, d->pingInterval * 60 * 1000, GreetPingServer, (XtPointer) d); } return dpy; } static void CloseGreet (struct display *d) { Boolean allow; Arg arglist[1]; Display *dpy = XtDisplay(toplevel); if (pingTimeout) { XtRemoveTimeOut (pingTimeout); pingTimeout = 0; } UnsecureDisplay (d, dpy); XtSetArg (arglist[0], XtNallowAccess, (char *) &allow); XtGetValues (login, arglist, 1); if (allow) { Debug ("Disabling access control\n"); XSetAccessControl (dpy, DisableAccess); } XtDestroyWidget (toplevel); ClearCloseOnFork (XConnectionNumber (dpy)); XCloseDisplay (dpy); Debug ("Greet connection closed\n"); } #define WHITESPACE 0 #define ARGUMENT 1 static int Greet (struct display *d, struct greet_info *greet) { XEvent event; Arg arglist[3]; XtSetArg (arglist[0], XtNallowAccess, False); XtSetValues (login, arglist, 1); Debug ("dispatching %s\n", d->name); done = 0; while (!done) { XtAppNextEvent (context, &event); switch (event.type) { case MappingNotify: XRefreshKeyboardMapping(&event.xmapping); break; default: XtDispatchEvent (&event); break; } } XFlush (XtDisplay (toplevel)); Debug ("Done dispatch %s\n", d->name); if (code == 0) { #ifndef USE_PAM char *ptr; unsigned int c,state = WHITESPACE; /* * Process the name string to get rid of white spaces. */ for (ptr = name; state == WHITESPACE; ptr++) { c = (unsigned int)(*ptr); if (c == ' ') continue; state = ARGUMENT; break; } greet->name = ptr; greet->password = password; #endif /* USE_PAM */ XtSetArg (arglist[0], XtNsessionArgument, (char *) &(greet->string)); XtSetArg (arglist[1], XtNallowNullPasswd, (char *) &(greet->allow_null_passwd)); XtSetArg (arglist[2], XtNallowRootLogin, (char *) &(greet->allow_root_login)); XtGetValues (login, arglist, 3); Debug ("sessionArgument: %s\n", greet->string ? greet->string : ""); } return code; } static void FailedLogin (struct display *d, struct greet_info *greet) { #ifdef __OpenBSD__ syslog(LOG_NOTICE, "LOGIN FAILURE ON %s", d->name); syslog(LOG_AUTHPRIV|LOG_NOTICE, "LOGIN FAILURE ON %s, %s", d->name, greet->name); #endif DrawFail (login); #ifndef USE_PAM bzero (greet->name, strlen(greet->name)); bzero (greet->password, strlen(greet->password)); #endif } _X_EXPORT greet_user_rtn GreetUser( struct display *d, Display ** dpy, struct verify_info *verify, struct greet_info *greet, struct dlfuncs *dlfuncs) { int i; #ifdef GREET_LIB /* * These must be set before they are used. */ __xdm_PingServer = dlfuncs->_PingServer; __xdm_SessionPingFailed = dlfuncs->_SessionPingFailed; __xdm_Debug = dlfuncs->_Debug; __xdm_RegisterCloseOnFork = dlfuncs->_RegisterCloseOnFork; __xdm_SecureDisplay = dlfuncs->_SecureDisplay; __xdm_UnsecureDisplay = dlfuncs->_UnsecureDisplay; __xdm_ClearCloseOnFork = dlfuncs->_ClearCloseOnFork; __xdm_SetupDisplay = dlfuncs->_SetupDisplay; __xdm_LogError = dlfuncs->_LogError; __xdm_SessionExit = dlfuncs->_SessionExit; __xdm_DeleteXloginResources = dlfuncs->_DeleteXloginResources; __xdm_source = dlfuncs->_source; __xdm_defaultEnv = dlfuncs->_defaultEnv; __xdm_setEnv = dlfuncs->_setEnv; __xdm_putEnv = dlfuncs->_putEnv; __xdm_parseArgs = dlfuncs->_parseArgs; __xdm_printEnv = dlfuncs->_printEnv; __xdm_systemEnv = dlfuncs->_systemEnv; __xdm_LogOutOfMem = dlfuncs->_LogOutOfMem; __xdm_setgrent = dlfuncs->_setgrent; __xdm_getgrent = dlfuncs->_getgrent; __xdm_endgrent = dlfuncs->_endgrent; #ifdef USESHADOW __xdm_getspnam = dlfuncs->_getspnam; # ifndef QNX4 __xdm_endspent = dlfuncs->_endspent; # endif /* QNX4 doesn't use endspent */ #endif __xdm_getpwnam = dlfuncs->_getpwnam; #if defined(linux) || defined(__GLIBC__) __xdm_endpwent = dlfuncs->_endpwent; #endif __xdm_crypt = dlfuncs->_crypt; #ifdef USE_PAM __xdm_thepamhp = dlfuncs->_thepamhp; #endif #endif *dpy = InitGreet (d); /* * Run the setup script - note this usually will not work when * the server is grabbed, so we don't even bother trying. */ if (!d->grabServer) SetupDisplay (d); if (!*dpy) { LogError ("Cannot reopen display %s for greet window\n", d->name); exit (RESERVER_DISPLAY); } #ifdef __OpenBSD__ openlog("xdm", LOG_ODELAY, LOG_AUTH); #endif for (;;) { #ifdef USE_PAM /* Run PAM conversation */ pam_handle_t **pamhp = thepamhp(); int pam_error; unsigned int pam_flags = 0; struct myconv_data pcd = { d, greet, NULL }; struct pam_conv pc = { pamconv, &pcd }; const char * pam_fname; char * username; const char * login_prompt; SetPrompt(login, 0, NULL, LOGIN_PROMPT_NOT_SHOWN, False); login_prompt = GetPrompt(login, LOGIN_PROMPT_USERNAME); SetPrompt(login, 1, NULL, LOGIN_PROMPT_NOT_SHOWN, False); #define RUN_AND_CHECK_PAM_ERROR(function, args) \ do { \ pam_error = function args; \ if (pam_error != PAM_SUCCESS) { \ PAM_ERROR_PRINT(#function, *pamhp); \ goto pam_done; \ } \ } while (0) RUN_AND_CHECK_PAM_ERROR(pam_start, ("xdm", NULL, &pc, pamhp)); /* Set default login prompt to xdm's default from Xresources */ if (login_prompt != NULL) { RUN_AND_CHECK_PAM_ERROR(pam_set_item, (*pamhp, PAM_USER_PROMPT, login_prompt)); } if (d->name[0] != ':') { /* Displaying to remote host */ char *hostname = strdup(d->name); if (hostname == NULL) { LogOutOfMem("GreetUser"); } else { char *colon = strrchr(hostname, ':'); if (colon != NULL) *colon = '\0'; RUN_AND_CHECK_PAM_ERROR(pam_set_item, (*pamhp, PAM_RHOST, hostname)); free(hostname); } } else RUN_AND_CHECK_PAM_ERROR(pam_set_item, (*pamhp, PAM_TTY, d->name)); if (!greet->allow_null_passwd) { pam_flags |= PAM_DISALLOW_NULL_AUTHTOK; } RUN_AND_CHECK_PAM_ERROR(pam_authenticate, (*pamhp, pam_flags)); /* handle expired passwords */ pam_error = pam_acct_mgmt(*pamhp, pam_flags); pam_fname = "pam_acct_mgmt"; if (pam_error == PAM_NEW_AUTHTOK_REQD) { ShowChangePasswdMessage(login); do { pam_error = pam_chauthtok(*pamhp, PAM_CHANGE_EXPIRED_AUTHTOK); } while ((pam_error == PAM_AUTHTOK_ERR) || (pam_error == PAM_TRY_AGAIN)); pam_fname = "pam_chauthtok"; } if (pam_error != PAM_SUCCESS) { PAM_ERROR_PRINT(pam_fname, *pamhp); goto pam_done; } RUN_AND_CHECK_PAM_ERROR(pam_setcred, (*pamhp, 0)); RUN_AND_CHECK_PAM_ERROR(pam_get_item, (*pamhp, PAM_USER, (void *) &username)); if (username != NULL) { Debug("PAM_USER: %s\n", username); greet->name = username; greet->password = NULL; } pam_done: if (code != 0) { CloseGreet (d); SessionExit (d, code, FALSE); } if ((pam_error == PAM_SUCCESS) && (Verify (d, greet, verify))) { SetPrompt (login, 1, "Login Successful", LOGIN_TEXT_INFO, False); SetValue (login, 1, NULL); break; } else { RUN_AND_CHECK_PAM_ERROR(pam_end, (*pamhp, pam_error)); FailedLogin (d, greet); } #else /* not PAM */ /* * Greet user, requesting name/password */ code = Greet (d, greet); if (code != 0) { CloseGreet (d); SessionExit (d, code, FALSE); } /* * Verify user */ if (Verify (d, greet, verify)) break; else FailedLogin (d, greet); #endif } DeleteXloginResources (d, *dpy); CloseGreet (d); Debug ("Greet loop finished\n"); /* * Run system-wide initialization file */ if (source (verify->systemEnviron, d->startup) != 0) { Debug ("Startup program %s exited with non-zero status\n", d->startup); SessionExit (d, OBEYSESS_DISPLAY, FALSE); } /* * for user-based authorization schemes, * add the user to the server's allowed "hosts" list. */ for (i = 0; i < d->authNum; i++) { #ifdef SECURE_RPC if (d->authorizations[i]->name_length == 9 && memcmp(d->authorizations[i]->name, "SUN-DES-1", 9) == 0) { XHostAddress addr; char netname[MAXNETNAMELEN+1]; char domainname[MAXNETNAMELEN+1]; getdomainname(domainname, sizeof domainname); user2netname (netname, verify->uid, domainname); addr.family = FamilyNetname; addr.length = strlen (netname); addr.address = netname; XAddHost (*dpy, &addr); } #endif #ifdef K5AUTH if (d->authorizations[i]->name_length == 14 && memcmp(d->authorizations[i]->name, "MIT-KERBEROS-5", 14) == 0) { /* Update server's auth file with user-specific info. * Don't need to AddHost because X server will do that * automatically when it reads the cache we are about * to point it at. */ extern Xauth *Krb5GetAuthFor(); XauDisposeAuth (d->authorizations[i]); d->authorizations[i] = Krb5GetAuthFor(14, "MIT-KERBEROS-5", d->name); SaveServerAuthorizations (d, d->authorizations, d->authNum); } #endif } return Greet_Success; } #ifdef USE_PAM static int pamconv(int num_msg, #ifndef sun const #endif struct pam_message **msg, struct pam_response **response, void *appdata_ptr) { int i; int greetCode; int status = PAM_SUCCESS; const char *pam_msg_styles[5] = { "", "PAM_PROMPT_ECHO_OFF", "PAM_PROMPT_ECHO_ON", "PAM_ERROR_MSG", "PAM_TEXT_INFO" } ; struct pam_message *m; struct pam_response *r; struct myconv_data *d = (struct myconv_data *) appdata_ptr; pam_handle_t **pamhp = thepamhp(); *response = calloc(num_msg, sizeof (struct pam_response)); if (*response == NULL) return (PAM_BUF_ERR); m = *msg; r = *response; for (i = 0; i < num_msg; i++ , m++ , r++) { char *username; int promptId = 0; loginPromptState pStyle = LOGIN_PROMPT_ECHO_OFF; if ((pam_get_item(*pamhp, PAM_USER, (void *) &username) == PAM_SUCCESS) && (username != NULL) && (*username != '\0')) { SetPrompt(login, LOGIN_PROMPT_USERNAME, NULL, LOGIN_TEXT_INFO, False); SetValue(login, LOGIN_PROMPT_USERNAME, username); promptId = 1; } Debug("pam_msg: %s (%d): '%s'\n", ((m->msg_style > 0) && (m->msg_style <= 4)) ? pam_msg_styles[m->msg_style] : pam_msg_styles[0], m->msg_style, m->msg); switch (m->msg_style) { case PAM_ERROR_MSG: ErrorMessage(login, m->msg, True); break; case PAM_TEXT_INFO: SetPrompt (login, promptId, m->msg, LOGIN_TEXT_INFO, True); SetValue (login, promptId, NULL); break; case PAM_PROMPT_ECHO_ON: pStyle = LOGIN_PROMPT_ECHO_ON; /* FALLTHROUGH */ case PAM_PROMPT_ECHO_OFF: SetPrompt (login, promptId, m->msg, pStyle, False); SetValue (login, promptId, NULL); greetCode = Greet (d->d, d->greet); if (greetCode != 0) { status = PAM_CONV_ERR; goto pam_error; } else { r->resp = strdup(GetValue(login, promptId)); SetValue(login, promptId, NULL); if (r->resp == NULL) { status = PAM_BUF_ERR; goto pam_error; } /* Debug("pam_resp: '%s'\n", r->resp); */ } break; default: LogError("Unknown PAM msg_style: %d\n", m->msg_style); } } pam_error: if (status != PAM_SUCCESS) { /* free responses */ r = *response; for (i = 0; i < num_msg; i++, r++) { if (r->resp) { bzero(r->resp, strlen(r->resp)); free(r->resp); } } free(*response); *response = NULL; } return status; } #endif