1995-02-18 02:27:10 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1985, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
|
|
|
static char sccsid[] = "@(#)getusershell.c 8.1 (Berkeley) 6/4/93";
|
|
|
|
#endif /* LIBC_SCCS and not lint */
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <stdio.h>
|
2001-07-17 10:32:35 +02:00
|
|
|
#include <stdio_ext.h>
|
1995-02-18 02:27:10 +01:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <paths.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local shells should NOT be added here. They should be added in
|
|
|
|
* /etc/shells.
|
|
|
|
*/
|
|
|
|
|
2006-05-15 20:57:25 +02:00
|
|
|
/* NB: we do not initialize okshells here. The initialization needs
|
|
|
|
relocations. These interfaces are used so rarely that this is not
|
|
|
|
justified. Instead explicitly initialize the array when it is
|
|
|
|
used. */
|
|
|
|
#if 0
|
2005-12-20 19:18:28 +01:00
|
|
|
static const char *const okshells[] = { _PATH_BSHELL, _PATH_CSHELL, NULL };
|
2006-05-15 20:57:25 +02:00
|
|
|
#else
|
|
|
|
static const char *okshells[3];
|
|
|
|
#endif
|
1996-05-09 21:30:57 +02:00
|
|
|
static char **curshell, **shells, *strings;
|
2004-09-14 06:41:35 +02:00
|
|
|
static char **initshells (void) __THROW;
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get a list of shells from _PATH_SHELLS, if it exists.
|
|
|
|
*/
|
|
|
|
char *
|
|
|
|
getusershell()
|
|
|
|
{
|
1996-05-09 21:30:57 +02:00
|
|
|
char *ret;
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
|
|
if (curshell == NULL)
|
|
|
|
curshell = initshells();
|
|
|
|
ret = *curshell;
|
|
|
|
if (ret != NULL)
|
|
|
|
curshell++;
|
1996-05-09 21:30:57 +02:00
|
|
|
return (ret);
|
1995-02-18 02:27:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
endusershell()
|
|
|
|
{
|
1996-05-09 21:30:57 +02:00
|
|
|
|
2005-12-20 19:18:28 +01:00
|
|
|
free(shells);
|
1995-02-18 02:27:10 +01:00
|
|
|
shells = NULL;
|
2005-12-20 19:18:28 +01:00
|
|
|
free(strings);
|
1995-02-18 02:27:10 +01:00
|
|
|
strings = NULL;
|
|
|
|
curshell = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
setusershell()
|
|
|
|
{
|
|
|
|
|
|
|
|
curshell = initshells();
|
|
|
|
}
|
|
|
|
|
1996-05-09 21:30:57 +02:00
|
|
|
static char **
|
1995-02-18 02:27:10 +01:00
|
|
|
initshells()
|
|
|
|
{
|
|
|
|
register char **sp, *cp;
|
|
|
|
register FILE *fp;
|
2000-09-01 04:26:05 +02:00
|
|
|
struct stat64 statb;
|
2006-12-09 23:29:37 +01:00
|
|
|
size_t flen;
|
1995-02-18 02:27:10 +01:00
|
|
|
|
2005-12-20 19:18:28 +01:00
|
|
|
free(shells);
|
1995-02-18 02:27:10 +01:00
|
|
|
shells = NULL;
|
2005-12-20 19:18:28 +01:00
|
|
|
free(strings);
|
1995-02-18 02:27:10 +01:00
|
|
|
strings = NULL;
|
2003-09-04 10:27:37 +02:00
|
|
|
if ((fp = fopen(_PATH_SHELLS, "rc")) == NULL)
|
2006-05-15 20:57:25 +02:00
|
|
|
goto init_okshells_noclose;
|
2000-09-01 04:26:05 +02:00
|
|
|
if (fstat64(fileno(fp), &statb) == -1) {
|
2006-05-15 20:57:25 +02:00
|
|
|
init_okshells:
|
1995-02-18 02:27:10 +01:00
|
|
|
(void)fclose(fp);
|
2006-05-15 20:57:25 +02:00
|
|
|
init_okshells_noclose:
|
|
|
|
okshells[0] = _PATH_BSHELL;
|
|
|
|
okshells[1] = _PATH_CSHELL;
|
2000-11-28 08:40:13 +01:00
|
|
|
return (char **) okshells;
|
1995-02-18 02:27:10 +01:00
|
|
|
}
|
2006-12-09 23:29:37 +01:00
|
|
|
if (statb.st_size > ~(size_t)0 / sizeof (char *) * 3)
|
2006-05-15 20:57:25 +02:00
|
|
|
goto init_okshells;
|
2006-12-09 23:29:37 +01:00
|
|
|
if ((strings = malloc(statb.st_size + 2)) == NULL)
|
|
|
|
goto init_okshells;
|
|
|
|
shells = malloc(statb.st_size / 3 * sizeof (char *));
|
1995-02-18 02:27:10 +01:00
|
|
|
if (shells == NULL) {
|
|
|
|
free(strings);
|
|
|
|
strings = NULL;
|
2006-05-15 20:57:25 +02:00
|
|
|
goto init_okshells;
|
1995-02-18 02:27:10 +01:00
|
|
|
}
|
1996-05-09 21:30:57 +02:00
|
|
|
sp = shells;
|
|
|
|
cp = strings;
|
2006-12-09 23:29:37 +01:00
|
|
|
flen = statb.st_size + 2;
|
1998-07-05 14:05:16 +02:00
|
|
|
while (fgets_unlocked(cp, flen - (cp - strings), fp) != NULL) {
|
1995-02-18 02:27:10 +01:00
|
|
|
while (*cp != '#' && *cp != '/' && *cp != '\0')
|
|
|
|
cp++;
|
2006-12-09 23:29:37 +01:00
|
|
|
if (*cp == '#' || *cp == '\0' || cp[1] == '\0')
|
1995-02-18 02:27:10 +01:00
|
|
|
continue;
|
|
|
|
*sp++ = cp;
|
|
|
|
while (!isspace(*cp) && *cp != '#' && *cp != '\0')
|
|
|
|
cp++;
|
|
|
|
*cp++ = '\0';
|
|
|
|
}
|
|
|
|
*sp = NULL;
|
|
|
|
(void)fclose(fp);
|
|
|
|
return (shells);
|
|
|
|
}
|