1 /* getusershell.c -- Return names of valid user shells.
2 Copyright (C) 1991, 1997, 2000, 2001 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* Written by David MacKenzie <djm@gnu.ai.mit.edu> */
26 /* File containing a list of nonrestricted shells, one per line. */
27 # define SHELLS_FILE "/etc/shells"
29 /* This is a horrible kludge. Isn't there a better way? */
30 # define SHELLS_FILE "/dev/env/DJDIR/etc/shells"
39 #include "unlocked-io.h"
42 #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
43 # define IN_CTYPE_DOMAIN(c) 1
45 # define IN_CTYPE_DOMAIN(c) isascii(c)
48 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))
50 static int readname ();
52 #if ! defined ADDITIONAL_DEFAULT_SHELLS && defined __MSDOS__
53 # define ADDITIONAL_DEFAULT_SHELLS \
54 "c:/dos/command.com", "c:/windows/command.com", "c:/command.com",
56 # define ADDITIONAL_DEFAULT_SHELLS /* empty */
59 /* List of shells to use if the shells file is missing. */
60 static char const* const default_shells
[] =
62 ADDITIONAL_DEFAULT_SHELLS
63 "/bin/sh", "/bin/csh", "/usr/bin/sh", "/usr/bin/csh", NULL
66 /* Index of the next shell in `default_shells' to return.
67 0 means we are not using `default_shells'. */
68 static int default_index
= 0;
70 /* Input stream from the shells file. */
71 static FILE *shellstream
= NULL
;
73 /* Line of input from the shells file. */
74 static char *line
= NULL
;
76 /* Number of bytes allocated for `line'. */
77 static int line_size
= 0;
79 /* Return an entry from the shells file, ignoring comment lines.
80 If the file doesn't exist, use the list in DEFAULT_SHELLS (above).
81 In any case, the returned string is in memory allocated through malloc.
82 Return NULL if there are no more entries. */
87 if (default_index
> 0)
89 if (default_shells
[default_index
])
90 /* Not at the end of the list yet. */
91 return xstrdup (default_shells
[default_index
++]);
95 if (shellstream
== NULL
)
97 shellstream
= fopen (SHELLS_FILE
, "r");
98 if (shellstream
== NULL
)
100 /* No shells file. Use the default list. */
102 return xstrdup (default_shells
[0]);
106 while (readname (&line
, &line_size
, shellstream
))
111 return NULL
; /* End of file. */
114 /* Rewind the shells file. */
121 rewind (shellstream
);
124 /* Close the shells file. */
131 fclose (shellstream
);
136 /* Read a line from STREAM, removing any newline at the end.
137 Place the result in *NAME, which is malloc'd
138 and/or realloc'd as necessary and can start out NULL,
139 and whose size is passed and returned in *SIZE.
141 Return the number of characters placed in *NAME
142 if some nonempty sequence was found, otherwise 0. */
145 readname (name
, size
, stream
)
156 *name
= (char *) xmalloc (*size
);
159 /* Skip blank space. */
160 while ((c
= getc (stream
)) != EOF
&& ISSPACE (c
))
163 while (c
!= EOF
&& !ISSPACE (c
))
165 (*name
)[name_index
++] = c
;
166 while (name_index
>= *size
)
169 *name
= (char *) xrealloc (*name
, *size
);
173 (*name
)[name_index
] = '\0';
182 while (s
= getusershell ())