2007-10-07 17:14:02 +05:30
|
|
|
/*
|
2008-04-27 06:10:09 +05:30
|
|
|
* Copyright (c) 1989 - 1993, Julianne Frances Haugh
|
|
|
|
* Copyright (c) 1996 - 2000, Marek Michałkiewicz
|
|
|
|
* Copyright (c) 2003 - 2005, Tomasz Kłoczko
|
2011-09-19 02:11:38 +05:30
|
|
|
* Copyright (c) 2008 - 2011, Nicolas François
|
2007-10-07 17:14:02 +05:30
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2008-04-27 06:10:09 +05:30
|
|
|
* 3. The name of the copyright holders or contributors may not be used to
|
|
|
|
* endorse or promote products derived from this software without
|
|
|
|
* specific prior written permission.
|
2007-10-07 17:14:02 +05:30
|
|
|
*
|
2008-04-27 06:10:09 +05:30
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
|
|
|
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2007-10-07 17:14:02 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2007-11-11 05:16:11 +05:30
|
|
|
#ident "$Id$"
|
2007-10-07 17:17:01 +05:30
|
|
|
|
2009-04-25 04:16:06 +05:30
|
|
|
#include <assert.h>
|
2007-10-07 17:14:02 +05:30
|
|
|
#include <stdio.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include "prototypes.h"
|
|
|
|
#include "defines.h"
|
|
|
|
#include "getdef.h"
|
2008-01-06 18:50:25 +05:30
|
|
|
|
|
|
|
static void login_exit (unused int sig)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2009-04-23 23:04:46 +05:30
|
|
|
exit (EXIT_FAILURE);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* login_prompt - prompt the user for their login name
|
|
|
|
*
|
|
|
|
* login_prompt() displays the standard login prompt. If ISSUE_FILE
|
|
|
|
* is set in login.defs, this file is displayed before the prompt.
|
|
|
|
*/
|
|
|
|
|
2007-10-07 17:15:23 +05:30
|
|
|
void login_prompt (const char *prompt, char *name, int namesize)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:15:23 +05:30
|
|
|
char buf[1024];
|
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
#define MAX_ENV 32
|
2007-10-07 17:15:23 +05:30
|
|
|
char *envp[MAX_ENV];
|
|
|
|
char *cp;
|
|
|
|
int i;
|
|
|
|
FILE *fp;
|
|
|
|
|
|
|
|
RETSIGTYPE (*sigquit) (int);
|
2007-10-07 17:14:02 +05:30
|
|
|
#ifdef SIGTSTP
|
2007-10-07 17:15:23 +05:30
|
|
|
RETSIGTYPE (*sigtstp) (int);
|
2007-10-07 17:14:02 +05:30
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* There is a small chance that a QUIT character will be part of
|
|
|
|
* some random noise during a prompt. Deal with this by exiting
|
|
|
|
* instead of core dumping. If SIGTSTP is defined, do the same
|
|
|
|
* thing for that signal.
|
|
|
|
*/
|
|
|
|
|
2007-10-07 17:15:23 +05:30
|
|
|
sigquit = signal (SIGQUIT, login_exit);
|
2007-10-07 17:14:02 +05:30
|
|
|
#ifdef SIGTSTP
|
2007-10-07 17:15:23 +05:30
|
|
|
sigtstp = signal (SIGTSTP, login_exit);
|
2007-10-07 17:14:02 +05:30
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* See if the user has configured the issue file to
|
|
|
|
* be displayed and display it before the prompt.
|
|
|
|
*/
|
|
|
|
|
2009-04-23 23:04:46 +05:30
|
|
|
if (NULL != prompt) {
|
* libmisc/console.c, libmisc/motd.c, libmisc/setupenv.c,
libmisc/sulog.c, libmisc/hushed.c, libmisc/failure.c,
libmisc/loginprompt.c, libmisc/ttytype.c,
libmisc/pam_pass_non_interractive.c, src/userdel.c, src/login.c,
lib/commonio.c, lib/commonio.h: Fix some const issues.
* libmisc/motd.c: Avoid multi-statements lines.
* libmisc/motd.c: Support long MOTD_FILE.
* libmisc/list.c, lib/prototypes.h: Revert previous change.
dup_list and is_on_list are used with members as defined for the
group structure, and thus even if the list is not modified, the
list elements cannot be constant strings.
* libmisc/system.c: Avoid C++ comments.
* src/vipw.c: WITH_TCB cannot be tested inside a gettextized
string. Split the Usage string.
* lib/commonio.h: Re-indent.
2010-08-21 21:02:53 +05:30
|
|
|
const char *fname = getdef_str ("ISSUE_FILE");
|
|
|
|
if (NULL != fname) {
|
|
|
|
fp = fopen (fname, "r");
|
2008-05-26 05:27:41 +05:30
|
|
|
if (NULL != fp) {
|
|
|
|
while ((i = getc (fp)) != EOF) {
|
2009-04-23 23:04:46 +05:30
|
|
|
(void) putc (i, stdout);
|
2008-05-26 05:27:41 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
(void) fclose (fp);
|
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
* libmisc/limits.c: Avoid implicit conversion of integer to
boolean.
* libmisc/basename.c: Avoid implicit conversion of pointer to
boolean.
* libmisc/basename.c, lib/prototypes.h (Basename): Return a
constant string.
* libmisc/basename.c, libmisc/obscure.c, lib/prototypes.h,
libmisc/xmalloc.c, libmisc/getdate.h, libmisc/system.c,
libmisc/getgr_nam_gid.c, libmisc/failure.c, libmisc/valid.c: Add
splint annotations.
* libmisc/chowndir.c: Avoid memory leak.
* libmisc/chowndir.c: Do not check *printf/*puts return value.
* libmisc/chowntty.c: Avoid implicit conversion between integer
types.
* libmisc/obscure.c: Return a bool when possible instead of int.
* libmisc/shell.c: Do not check *printf/*puts return value.
* libmisc/shell.c: Do not check execle return value.
* libmisc/setupenv.c: Avoid implicit conversion between integer
types.
* libmisc/xmalloc.c: size should not be zero to avoid returning
NULL pointers.
* libmisc/hushed.c: Do not check *printf/*puts return value.
* libmisc/system.c: Avoid implicit conversion of integer to
boolean. safe_system last argument is a boolean.
* libmisc/system.c: Check return value of dup2.
* libmisc/system.c: Do not check *printf/*puts return value.
* libmisc/system.c: Do not check execve return value.
* libmisc/salt.c: Do not check *printf/*puts return value.
* libmisc/loginprompt.c: Do not check gethostname return value.
* libmisc/find_new_gid.c, libmisc/find_new_uid.c: Do not check
gr_rewind/pw_rewind return value.
* libmisc/ttytype.c: Limit the number of parsed characters in the
sscanf format.
* libmisc/ttytype.c: Test if a type was really read.
* libmisc/sub.c: Do not check *printf/*puts return value.
* libmisc/sub.c: Avoid implicit conversion of integer to boolean.
* src/userdel.c: Fix typo in comment.
* src/userdel.c: Avoid implicit conversion of boolean to integer.
* src/userdel.c: safe_system last argument is a boolean.
* src/newusers.c: Avoid implicit conversion of boolean to integer.
* src/newusers.c: Avoid implicit conversion of integer to boolean.
* src/usermod.c: Add brackets.
* src/usermod.c: Avoid implicit conversion of characters or
integers to booleans.
* src/vipw.c: Avoid implicit conversion of integer to boolean.
* src/su.c: Avoid implicit conversion of integer to boolean.
* src/su.c: Add brackets.
* src/useradd.c: Avoid implicit conversion of characters or
integers to booleans.
2010-08-23 00:43:53 +05:30
|
|
|
(void) gethostname (buf, sizeof buf);
|
2007-10-07 17:15:23 +05:30
|
|
|
printf (prompt, buf);
|
2008-05-26 05:27:41 +05:30
|
|
|
(void) fflush (stdout);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read the user's response. The trailing newline will be
|
|
|
|
* removed.
|
|
|
|
*/
|
|
|
|
|
2007-10-07 17:15:23 +05:30
|
|
|
memzero (buf, sizeof buf);
|
* libmisc/console.c, libmisc/hushed.c, libmisc/yesno.c,
libmisc/loginprompt.c, libmisc/ttytype.c, libmisc/tz.c,
src/login_nopam.c, src/chpasswd.c, src/chgpasswd.c, lib/port.c:
The size argument of fgets is an int, not a size_t.
* libmisc/loginprompt.c: Ignore the return value from signal()
when the signal handlers are restored.
* src/chpasswd.c: Cast the return value of time() to a long
integer.
* src/chpasswd.c: Use the SCALE macro instead of (24L * 3600L)
for the values to be set in /etc/shadow.
2008-06-13 23:41:09 +05:30
|
|
|
if (fgets (buf, (int) sizeof buf, stdin) != buf) {
|
2009-04-23 23:04:46 +05:30
|
|
|
exit (EXIT_FAILURE);
|
2008-05-26 05:27:41 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:15:23 +05:30
|
|
|
cp = strchr (buf, '\n');
|
2008-05-26 05:27:41 +05:30
|
|
|
if (NULL == cp) {
|
2009-04-23 23:04:46 +05:30
|
|
|
exit (EXIT_FAILURE);
|
2008-05-26 05:27:41 +05:30
|
|
|
}
|
2007-10-07 17:15:23 +05:30
|
|
|
*cp = '\0'; /* remove \n [ must be there ] */
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Skip leading whitespace. This makes " username" work right.
|
|
|
|
* Then copy the rest (up to the end or the first "non-graphic"
|
|
|
|
* character into the username.
|
|
|
|
*/
|
|
|
|
|
2007-10-07 17:15:23 +05:30
|
|
|
for (cp = buf; *cp == ' ' || *cp == '\t'; cp++);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:15:23 +05:30
|
|
|
for (i = 0; i < namesize - 1 && isgraph (*cp); name[i++] = *cp++);
|
2008-05-26 05:27:41 +05:30
|
|
|
while (isgraph (*cp)) {
|
2007-10-07 17:14:02 +05:30
|
|
|
cp++;
|
2008-05-26 05:27:41 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2008-05-26 05:27:41 +05:30
|
|
|
if ('\0' != *cp) {
|
2007-10-07 17:14:02 +05:30
|
|
|
cp++;
|
2008-05-26 05:27:41 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
name[i] = '\0';
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a disaster, at best. The user may have entered extra
|
|
|
|
* environmental variables at the prompt. There are several ways
|
|
|
|
* to do this, and I just take the easy way out.
|
|
|
|
*/
|
|
|
|
|
2008-05-26 05:27:41 +05:30
|
|
|
if ('\0' != *cp) { /* process new variables */
|
2007-10-07 17:14:02 +05:30
|
|
|
char *nvar;
|
|
|
|
int count = 1;
|
2010-03-23 14:26:52 +05:30
|
|
|
int envc;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
for (envc = 0; envc < MAX_ENV; envc++) {
|
2008-05-26 05:27:41 +05:30
|
|
|
nvar = strtok ((0 != envc) ? (char *) 0 : cp, " \t,");
|
|
|
|
if (NULL == nvar) {
|
2007-10-07 17:14:02 +05:30
|
|
|
break;
|
2008-05-26 05:27:41 +05:30
|
|
|
}
|
|
|
|
if (strchr (nvar, '=') != NULL) {
|
2007-10-07 17:14:02 +05:30
|
|
|
envp[envc] = nvar;
|
|
|
|
} else {
|
2009-04-25 03:57:58 +05:30
|
|
|
size_t len = strlen (nvar) + 32;
|
|
|
|
envp[envc] = xmalloc (len);
|
2011-09-19 02:11:38 +05:30
|
|
|
(void) snprintf (envp[envc], len,
|
|
|
|
"L%d=%s", count++, nvar);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
}
|
2007-10-07 17:15:23 +05:30
|
|
|
set_env (envc, envp);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set the SIGQUIT handler back to its original value
|
|
|
|
*/
|
|
|
|
|
* libmisc/console.c, libmisc/hushed.c, libmisc/yesno.c,
libmisc/loginprompt.c, libmisc/ttytype.c, libmisc/tz.c,
src/login_nopam.c, src/chpasswd.c, src/chgpasswd.c, lib/port.c:
The size argument of fgets is an int, not a size_t.
* libmisc/loginprompt.c: Ignore the return value from signal()
when the signal handlers are restored.
* src/chpasswd.c: Cast the return value of time() to a long
integer.
* src/chpasswd.c: Use the SCALE macro instead of (24L * 3600L)
for the values to be set in /etc/shadow.
2008-06-13 23:41:09 +05:30
|
|
|
(void) signal (SIGQUIT, sigquit);
|
2007-10-07 17:14:02 +05:30
|
|
|
#ifdef SIGTSTP
|
* libmisc/console.c, libmisc/hushed.c, libmisc/yesno.c,
libmisc/loginprompt.c, libmisc/ttytype.c, libmisc/tz.c,
src/login_nopam.c, src/chpasswd.c, src/chgpasswd.c, lib/port.c:
The size argument of fgets is an int, not a size_t.
* libmisc/loginprompt.c: Ignore the return value from signal()
when the signal handlers are restored.
* src/chpasswd.c: Cast the return value of time() to a long
integer.
* src/chpasswd.c: Use the SCALE macro instead of (24L * 3600L)
for the values to be set in /etc/shadow.
2008-06-13 23:41:09 +05:30
|
|
|
(void) signal (SIGTSTP, sigtstp);
|
2007-10-07 17:14:02 +05:30
|
|
|
#endif
|
|
|
|
}
|
2008-05-26 05:27:41 +05:30
|
|
|
|