1 /* getusershell.c -- Return names of valid user shells.
2 Copyright (C) 1991 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> */
25 /* File containing a list of nonrestricted shells, one per line. */
26 # define SHELLS_FILE "/etc/shells"
41 static int readname ();
43 /* List of shells to use if the shells file is missing. */
44 static char const* const default_shells
[] =
46 "/bin/sh", "/bin/csh", "/usr/bin/sh", "/usr/bin/csh", NULL
49 /* Index of the next shell in `default_shells' to return.
50 0 means we are not using `default_shells'. */
51 static int default_index
= 0;
53 /* Input stream from the shells file. */
54 static FILE *shellstream
= NULL
;
56 /* Line of input from the shells file. */
57 static char *line
= NULL
;
59 /* Number of bytes allocated for `line'. */
60 static int line_size
= 0;
62 /* Return an entry from the shells file, ignoring comment lines.
63 If the file doesn't exist, use the list in DEFAULT_SHELLS (above).
64 In any case, the returned string is in memory allocated through malloc.
65 Return NULL if there are no more entries. */
70 if (default_index
> 0)
72 if (default_shells
[default_index
])
73 /* Not at the end of the list yet. */
74 return xstrdup (default_shells
[default_index
++]);
78 if (shellstream
== NULL
)
80 shellstream
= fopen (SHELLS_FILE
, "r");
81 if (shellstream
== NULL
)
83 /* No shells file. Use the default list. */
85 return xstrdup (default_shells
[0]);
89 while (readname (&line
, &line_size
, shellstream
))
94 return NULL
; /* End of file. */
97 /* Rewind the shells file. */
103 if (shellstream
== NULL
)
104 shellstream
= fopen (SHELLS_FILE
, "r");
106 fseek (shellstream
, 0L, 0);
109 /* Close the shells file. */
116 fclose (shellstream
);
121 /* Allocate N bytes of memory dynamically, with error checking. */
132 fprintf (stderr
, "virtual memory exhausted\n");
138 /* Reallocate space P to size N, with error checking. */
148 fprintf (stderr
, "virtual memory exhausted\n");
154 /* Read a line from STREAM, removing any newline at the end.
155 Place the result in *NAME, which is malloc'd
156 and/or realloc'd as necessary and can start out NULL,
157 and whose size is passed and returned in *SIZE.
159 Return the number of characters placed in *NAME
160 if some nonempty sequence was found, otherwise 0. */
163 readname (name
, size
, stream
)
174 *name
= (char *) xmalloc (*size
);
177 /* Skip blank space. */
178 while ((c
= getc (stream
)) != EOF
&& isspace (c
))
181 while (c
!= EOF
&& !isspace (c
))
183 (*name
)[name_index
++] = c
;
184 while (name_index
>= *size
)
187 *name
= (char *) xrealloc (*name
, *size
);
191 (*name
)[name_index
] = '\0';
200 while (s
= getusershell ())