(setusershell): Use rewind rather than
[gnulib.git] / lib / getusershell.c
1 /* getusershell.c -- Return names of valid user shells.
2    Copyright (C) 1991, 1997, 2000 Free Software Foundation, Inc.
3
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)
7    any later version.
8
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.
13
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.  */
17
18 /* Written by David MacKenzie <djm@gnu.ai.mit.edu> */
19
20 #ifdef HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 #ifndef SHELLS_FILE
25 /* File containing a list of nonrestricted shells, one per line. */
26 # define SHELLS_FILE "/etc/shells"
27 #endif
28
29 #include <stdio.h>
30 #include <ctype.h>
31 #include "xalloc.h"
32
33 #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
34 # define IN_CTYPE_DOMAIN(c) 1
35 #else
36 # define IN_CTYPE_DOMAIN(c) isascii(c)
37 #endif
38
39 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))
40
41 static int readname ();
42
43 /* List of shells to use if the shells file is missing. */
44 static char const* const default_shells[] =
45 {
46   "/bin/sh", "/bin/csh", "/usr/bin/sh", "/usr/bin/csh", NULL
47 };
48
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;
52
53 /* Input stream from the shells file. */
54 static FILE *shellstream = NULL;
55
56 /* Line of input from the shells file. */
57 static char *line = NULL;
58
59 /* Number of bytes allocated for `line'. */
60 static int line_size = 0;
61 \f
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.  */
66
67 char *
68 getusershell ()
69 {
70   if (default_index > 0)
71     {
72       if (default_shells[default_index])
73         /* Not at the end of the list yet.  */
74         return xstrdup (default_shells[default_index++]);
75       return NULL;
76     }
77
78   if (shellstream == NULL)
79     {
80       shellstream = fopen (SHELLS_FILE, "r");
81       if (shellstream == NULL)
82         {
83           /* No shells file.  Use the default list.  */
84           default_index = 1;
85           return xstrdup (default_shells[0]);
86         }
87     }
88
89   while (readname (&line, &line_size, shellstream))
90     {
91       if (*line != '#')
92         return line;
93     }
94   return NULL;                  /* End of file. */
95 }
96
97 /* Rewind the shells file. */
98
99 void
100 setusershell ()
101 {
102   default_index = 0;
103   if (shellstream)
104     rewind (shellstream);
105 }
106
107 /* Close the shells file. */
108
109 void
110 endusershell ()
111 {
112   if (shellstream)
113     {
114       fclose (shellstream);
115       shellstream = NULL;
116     }
117 }
118
119 /* Read a line from STREAM, removing any newline at the end.
120    Place the result in *NAME, which is malloc'd
121    and/or realloc'd as necessary and can start out NULL,
122    and whose size is passed and returned in *SIZE.
123
124    Return the number of characters placed in *NAME
125    if some nonempty sequence was found, otherwise 0.  */
126
127 static int
128 readname (name, size, stream)
129      char **name;
130      int *size;
131      FILE *stream;
132 {
133   int c;
134   int name_index = 0;
135
136   if (*name == NULL)
137     {
138       *size = 10;
139       *name = (char *) xmalloc (*size);
140     }
141
142   /* Skip blank space.  */
143   while ((c = getc (stream)) != EOF && ISSPACE (c))
144     /* Do nothing. */ ;
145
146   while (c != EOF && !ISSPACE (c))
147     {
148       (*name)[name_index++] = c;
149       while (name_index >= *size)
150         {
151           *size *= 2;
152           *name = (char *) xrealloc (*name, *size);
153         }
154       c = getc (stream);
155     }
156   (*name)[name_index] = '\0';
157   return name_index;
158 }
159
160 #ifdef TEST
161 main ()
162 {
163   char *s;
164
165   while (s = getusershell ())
166     puts (s);
167   exit (0);
168 }
169 #endif