Simplify the code by using new xalloc.h features.
[gnulib.git] / lib / getusershell.c
1 /* getusershell.c -- Return names of valid user shells.
2    Copyright (C) 1991, 1997, 2000, 2001, 2003 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 # ifndef __DJGPP__
26 /* File containing a list of nonrestricted shells, one per line. */
27 #  define SHELLS_FILE "/etc/shells"
28 # else
29 /* This is a horrible kludge.  Isn't there a better way?  */
30 #  define SHELLS_FILE "/dev/env/DJDIR/etc/shells"
31 # endif
32 #endif
33
34 #include <stdio.h>
35 #include <stdlib.h>
36 #include <ctype.h>
37 #include "unlocked-io.h"
38 #include "xalloc.h"
39
40 #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
41 # define IN_CTYPE_DOMAIN(c) 1
42 #else
43 # define IN_CTYPE_DOMAIN(c) isascii(c)
44 #endif
45
46 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))
47
48 static size_t readname (char **, size_t *, FILE *);
49
50 #if ! defined ADDITIONAL_DEFAULT_SHELLS && defined __MSDOS__
51 # define ADDITIONAL_DEFAULT_SHELLS \
52   "c:/dos/command.com", "c:/windows/command.com", "c:/command.com",
53 #else
54 # define ADDITIONAL_DEFAULT_SHELLS /* empty */
55 #endif
56
57 /* List of shells to use if the shells file is missing. */
58 static char const* const default_shells[] =
59 {
60   ADDITIONAL_DEFAULT_SHELLS
61   "/bin/sh", "/bin/csh", "/usr/bin/sh", "/usr/bin/csh", NULL
62 };
63
64 /* Index of the next shell in `default_shells' to return.
65    0 means we are not using `default_shells'. */
66 static size_t default_index = 0;
67
68 /* Input stream from the shells file. */
69 static FILE *shellstream = NULL;
70
71 /* Line of input from the shells file. */
72 static char *line = NULL;
73
74 /* Number of bytes allocated for `line'. */
75 static size_t line_size = 0;
76 \f
77 /* Return an entry from the shells file, ignoring comment lines.
78    If the file doesn't exist, use the list in DEFAULT_SHELLS (above).
79    In any case, the returned string is in memory allocated through malloc.
80    Return NULL if there are no more entries.  */
81
82 char *
83 getusershell (void)
84 {
85   if (default_index > 0)
86     {
87       if (default_shells[default_index])
88         /* Not at the end of the list yet.  */
89         return xstrdup (default_shells[default_index++]);
90       return NULL;
91     }
92
93   if (shellstream == NULL)
94     {
95       shellstream = fopen (SHELLS_FILE, "r");
96       if (shellstream == NULL)
97         {
98           /* No shells file.  Use the default list.  */
99           default_index = 1;
100           return xstrdup (default_shells[0]);
101         }
102     }
103
104   while (readname (&line, &line_size, shellstream))
105     {
106       if (*line != '#')
107         return line;
108     }
109   return NULL;                  /* End of file. */
110 }
111
112 /* Rewind the shells file. */
113
114 void
115 setusershell (void)
116 {
117   default_index = 0;
118   if (shellstream)
119     rewind (shellstream);
120 }
121
122 /* Close the shells file. */
123
124 void
125 endusershell (void)
126 {
127   if (shellstream)
128     {
129       fclose (shellstream);
130       shellstream = NULL;
131     }
132 }
133
134 /* Read a line from STREAM, removing any newline at the end.
135    Place the result in *NAME, which is malloc'd
136    and/or realloc'd as necessary and can start out NULL,
137    and whose size is passed and returned in *SIZE.
138
139    Return the number of bytes placed in *NAME
140    if some nonempty sequence was found, otherwise 0.  */
141
142 static size_t
143 readname (char **name, size_t *size, FILE *stream)
144 {
145   int c;
146   size_t name_index = 0;
147
148   /* Skip blank space.  */
149   while ((c = getc (stream)) != EOF && ISSPACE (c))
150     /* Do nothing. */ ;
151
152   for (;;)
153     {
154       if (*size <= name_index)
155         *name = x2nrealloc (*name, size, sizeof **name);
156       if (c == EOF || ISSPACE (c))
157         break;
158       (*name)[name_index++] = c;
159       c = getc (stream);
160     }
161   (*name)[name_index] = '\0';
162   return name_index;
163 }
164
165 #ifdef TEST
166 int
167 main (void)
168 {
169   char *s;
170
171   while (s = getusershell ())
172     puts (s);
173   exit (0);
174 }
175 #endif