1992-11-01 13:44:29 +08:00
|
|
|
|
/* getusershell.c -- Return names of valid user shells.
|
2004-10-05 04:18:43 +08:00
|
|
|
|
|
2005-04-12 04:02:43 +08:00
|
|
|
|
Copyright (C) 1991, 1997, 2000, 2001, 2003, 2004, 2005 Free Software
|
2004-10-05 04:18:43 +08:00
|
|
|
|
Foundation, Inc.
|
1992-11-01 13:44:29 +08:00
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
1996-07-15 11:43:36 +08:00
|
|
|
|
along with this program; if not, write to the Free Software Foundation,
|
2005-05-14 15:58:06 +08:00
|
|
|
|
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
|
1992-11-01 13:44:29 +08:00
|
|
|
|
|
|
|
|
|
/* Written by David MacKenzie <djm@gnu.ai.mit.edu> */
|
|
|
|
|
|
1993-10-12 22:49:11 +08:00
|
|
|
|
#ifdef HAVE_CONFIG_H
|
1996-07-15 11:56:06 +08:00
|
|
|
|
# include <config.h>
|
1993-10-12 22:49:11 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
1992-11-01 13:44:29 +08:00
|
|
|
|
#ifndef SHELLS_FILE
|
2000-12-17 06:25:44 +08:00
|
|
|
|
# ifndef __DJGPP__
|
1992-11-01 13:44:29 +08:00
|
|
|
|
/* File containing a list of nonrestricted shells, one per line. */
|
2000-12-17 06:25:44 +08:00
|
|
|
|
# define SHELLS_FILE "/etc/shells"
|
|
|
|
|
# else
|
|
|
|
|
/* This is a horrible kludge. Isn't there a better way? */
|
|
|
|
|
# define SHELLS_FILE "/dev/env/DJDIR/etc/shells"
|
|
|
|
|
# endif
|
1992-11-01 13:44:29 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
Include <stdlib.h> unconditionally.
(getusershell, setusershell, endusershell, readname, main):
Define with prototypes.
(readname, default_index, line_size, readname):
Use size_t, not int, for sizes.
(readname): If the size overflows, report an error instead of
looping forever.
2003-09-10 16:24:00 +08:00
|
|
|
|
#include <stdlib.h>
|
1992-11-01 13:44:29 +08:00
|
|
|
|
#include <ctype.h>
|
2004-10-05 04:18:43 +08:00
|
|
|
|
|
2005-07-03 15:15:09 +08:00
|
|
|
|
#include "stdio--.h"
|
2000-06-26 05:17:32 +08:00
|
|
|
|
#include "xalloc.h"
|
1992-11-01 13:44:29 +08:00
|
|
|
|
|
2004-10-05 04:18:43 +08:00
|
|
|
|
#if USE_UNLOCKED_IO
|
|
|
|
|
# include "unlocked-io.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
1997-09-21 21:15:48 +08:00
|
|
|
|
#if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
|
|
|
|
|
# define IN_CTYPE_DOMAIN(c) 1
|
|
|
|
|
#else
|
|
|
|
|
# define IN_CTYPE_DOMAIN(c) isascii(c)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))
|
|
|
|
|
|
Include <stdlib.h> unconditionally.
(getusershell, setusershell, endusershell, readname, main):
Define with prototypes.
(readname, default_index, line_size, readname):
Use size_t, not int, for sizes.
(readname): If the size overflows, report an error instead of
looping forever.
2003-09-10 16:24:00 +08:00
|
|
|
|
static size_t readname (char **, size_t *, FILE *);
|
1992-11-01 13:44:29 +08:00
|
|
|
|
|
2000-12-17 06:25:44 +08:00
|
|
|
|
#if ! defined ADDITIONAL_DEFAULT_SHELLS && defined __MSDOS__
|
|
|
|
|
# define ADDITIONAL_DEFAULT_SHELLS \
|
|
|
|
|
"c:/dos/command.com", "c:/windows/command.com", "c:/command.com",
|
|
|
|
|
#else
|
|
|
|
|
# define ADDITIONAL_DEFAULT_SHELLS /* empty */
|
|
|
|
|
#endif
|
|
|
|
|
|
1992-11-01 13:44:29 +08:00
|
|
|
|
/* List of shells to use if the shells file is missing. */
|
1992-11-12 12:13:46 +08:00
|
|
|
|
static char const* const default_shells[] =
|
1992-11-01 13:44:29 +08:00
|
|
|
|
{
|
2000-12-17 06:25:44 +08:00
|
|
|
|
ADDITIONAL_DEFAULT_SHELLS
|
1992-11-01 13:44:29 +08:00
|
|
|
|
"/bin/sh", "/bin/csh", "/usr/bin/sh", "/usr/bin/csh", NULL
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Index of the next shell in `default_shells' to return.
|
|
|
|
|
0 means we are not using `default_shells'. */
|
Include <stdlib.h> unconditionally.
(getusershell, setusershell, endusershell, readname, main):
Define with prototypes.
(readname, default_index, line_size, readname):
Use size_t, not int, for sizes.
(readname): If the size overflows, report an error instead of
looping forever.
2003-09-10 16:24:00 +08:00
|
|
|
|
static size_t default_index = 0;
|
1992-11-01 13:44:29 +08:00
|
|
|
|
|
|
|
|
|
/* Input stream from the shells file. */
|
|
|
|
|
static FILE *shellstream = NULL;
|
|
|
|
|
|
|
|
|
|
/* Line of input from the shells file. */
|
|
|
|
|
static char *line = NULL;
|
|
|
|
|
|
|
|
|
|
/* Number of bytes allocated for `line'. */
|
Include <stdlib.h> unconditionally.
(getusershell, setusershell, endusershell, readname, main):
Define with prototypes.
(readname, default_index, line_size, readname):
Use size_t, not int, for sizes.
(readname): If the size overflows, report an error instead of
looping forever.
2003-09-10 16:24:00 +08:00
|
|
|
|
static size_t line_size = 0;
|
1992-11-01 13:44:29 +08:00
|
|
|
|
|
|
|
|
|
/* Return an entry from the shells file, ignoring comment lines.
|
1993-10-25 05:30:08 +08:00
|
|
|
|
If the file doesn't exist, use the list in DEFAULT_SHELLS (above).
|
|
|
|
|
In any case, the returned string is in memory allocated through malloc.
|
1992-11-01 13:44:29 +08:00
|
|
|
|
Return NULL if there are no more entries. */
|
|
|
|
|
|
|
|
|
|
char *
|
Include <stdlib.h> unconditionally.
(getusershell, setusershell, endusershell, readname, main):
Define with prototypes.
(readname, default_index, line_size, readname):
Use size_t, not int, for sizes.
(readname): If the size overflows, report an error instead of
looping forever.
2003-09-10 16:24:00 +08:00
|
|
|
|
getusershell (void)
|
1992-11-01 13:44:29 +08:00
|
|
|
|
{
|
|
|
|
|
if (default_index > 0)
|
|
|
|
|
{
|
|
|
|
|
if (default_shells[default_index])
|
|
|
|
|
/* Not at the end of the list yet. */
|
1993-10-25 05:30:08 +08:00
|
|
|
|
return xstrdup (default_shells[default_index++]);
|
1992-11-01 13:44:29 +08:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (shellstream == NULL)
|
|
|
|
|
{
|
2005-07-03 15:15:09 +08:00
|
|
|
|
shellstream = fopen (SHELLS_FILE, "r");
|
1992-11-01 13:44:29 +08:00
|
|
|
|
if (shellstream == NULL)
|
|
|
|
|
{
|
|
|
|
|
/* No shells file. Use the default list. */
|
|
|
|
|
default_index = 1;
|
1993-10-25 05:30:08 +08:00
|
|
|
|
return xstrdup (default_shells[0]);
|
1992-11-01 13:44:29 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while (readname (&line, &line_size, shellstream))
|
|
|
|
|
{
|
|
|
|
|
if (*line != '#')
|
|
|
|
|
return line;
|
|
|
|
|
}
|
|
|
|
|
return NULL; /* End of file. */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Rewind the shells file. */
|
|
|
|
|
|
|
|
|
|
void
|
Include <stdlib.h> unconditionally.
(getusershell, setusershell, endusershell, readname, main):
Define with prototypes.
(readname, default_index, line_size, readname):
Use size_t, not int, for sizes.
(readname): If the size overflows, report an error instead of
looping forever.
2003-09-10 16:24:00 +08:00
|
|
|
|
setusershell (void)
|
1992-11-01 13:44:29 +08:00
|
|
|
|
{
|
|
|
|
|
default_index = 0;
|
2000-11-07 23:35:15 +08:00
|
|
|
|
if (shellstream)
|
|
|
|
|
rewind (shellstream);
|
1992-11-01 13:44:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Close the shells file. */
|
|
|
|
|
|
|
|
|
|
void
|
Include <stdlib.h> unconditionally.
(getusershell, setusershell, endusershell, readname, main):
Define with prototypes.
(readname, default_index, line_size, readname):
Use size_t, not int, for sizes.
(readname): If the size overflows, report an error instead of
looping forever.
2003-09-10 16:24:00 +08:00
|
|
|
|
endusershell (void)
|
1992-11-01 13:44:29 +08:00
|
|
|
|
{
|
|
|
|
|
if (shellstream)
|
|
|
|
|
{
|
|
|
|
|
fclose (shellstream);
|
|
|
|
|
shellstream = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Read a line from STREAM, removing any newline at the end.
|
|
|
|
|
Place the result in *NAME, which is malloc'd
|
|
|
|
|
and/or realloc'd as necessary and can start out NULL,
|
|
|
|
|
and whose size is passed and returned in *SIZE.
|
|
|
|
|
|
Include <stdlib.h> unconditionally.
(getusershell, setusershell, endusershell, readname, main):
Define with prototypes.
(readname, default_index, line_size, readname):
Use size_t, not int, for sizes.
(readname): If the size overflows, report an error instead of
looping forever.
2003-09-10 16:24:00 +08:00
|
|
|
|
Return the number of bytes placed in *NAME
|
1992-11-01 13:44:29 +08:00
|
|
|
|
if some nonempty sequence was found, otherwise 0. */
|
|
|
|
|
|
Include <stdlib.h> unconditionally.
(getusershell, setusershell, endusershell, readname, main):
Define with prototypes.
(readname, default_index, line_size, readname):
Use size_t, not int, for sizes.
(readname): If the size overflows, report an error instead of
looping forever.
2003-09-10 16:24:00 +08:00
|
|
|
|
static size_t
|
|
|
|
|
readname (char **name, size_t *size, FILE *stream)
|
1992-11-01 13:44:29 +08:00
|
|
|
|
{
|
|
|
|
|
int c;
|
Include <stdlib.h> unconditionally.
(getusershell, setusershell, endusershell, readname, main):
Define with prototypes.
(readname, default_index, line_size, readname):
Use size_t, not int, for sizes.
(readname): If the size overflows, report an error instead of
looping forever.
2003-09-10 16:24:00 +08:00
|
|
|
|
size_t name_index = 0;
|
1992-11-01 13:44:29 +08:00
|
|
|
|
|
|
|
|
|
/* Skip blank space. */
|
1997-09-21 21:15:48 +08:00
|
|
|
|
while ((c = getc (stream)) != EOF && ISSPACE (c))
|
1992-11-01 13:44:29 +08:00
|
|
|
|
/* Do nothing. */ ;
|
1996-11-24 11:05:11 +08:00
|
|
|
|
|
2004-04-04 14:51:11 +08:00
|
|
|
|
for (;;)
|
1992-11-01 13:44:29 +08:00
|
|
|
|
{
|
2004-04-04 14:51:11 +08:00
|
|
|
|
if (*size <= name_index)
|
|
|
|
|
*name = x2nrealloc (*name, size, sizeof **name);
|
|
|
|
|
if (c == EOF || ISSPACE (c))
|
|
|
|
|
break;
|
1992-11-01 13:44:29 +08:00
|
|
|
|
(*name)[name_index++] = c;
|
|
|
|
|
c = getc (stream);
|
|
|
|
|
}
|
|
|
|
|
(*name)[name_index] = '\0';
|
|
|
|
|
return name_index;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef TEST
|
Include <stdlib.h> unconditionally.
(getusershell, setusershell, endusershell, readname, main):
Define with prototypes.
(readname, default_index, line_size, readname):
Use size_t, not int, for sizes.
(readname): If the size overflows, report an error instead of
looping forever.
2003-09-10 16:24:00 +08:00
|
|
|
|
int
|
|
|
|
|
main (void)
|
1992-11-01 13:44:29 +08:00
|
|
|
|
{
|
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
|
|
while (s = getusershell ())
|
|
|
|
|
puts (s);
|
|
|
|
|
exit (0);
|
|
|
|
|
}
|
|
|
|
|
#endif
|