Home | History | Annotate | Line # | Download | only in gen
getusershell.c revision 1.17
      1  1.17     lukem /*	$NetBSD: getusershell.c,v 1.17 1999/01/25 01:09:34 lukem Exp $	*/
      2   1.5       cgd 
      3   1.1       cgd /*
      4   1.5       cgd  * Copyright (c) 1985, 1993
      5   1.5       cgd  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     16   1.1       cgd  *    must display the following acknowledgement:
     17   1.1       cgd  *	This product includes software developed by the University of
     18   1.1       cgd  *	California, Berkeley and its contributors.
     19   1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     20   1.1       cgd  *    may be used to endorse or promote products derived from this software
     21   1.1       cgd  *    without specific prior written permission.
     22   1.1       cgd  *
     23   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33   1.1       cgd  * SUCH DAMAGE.
     34   1.1       cgd  */
     35   1.1       cgd 
     36   1.6  christos #include <sys/cdefs.h>
     37   1.1       cgd #if defined(LIBC_SCCS) && !defined(lint)
     38   1.5       cgd #if 0
     39   1.5       cgd static char sccsid[] = "@(#)getusershell.c	8.1 (Berkeley) 6/4/93";
     40   1.5       cgd #else
     41  1.17     lukem __RCSID("$NetBSD: getusershell.c,v 1.17 1999/01/25 01:09:34 lukem Exp $");
     42   1.5       cgd #endif
     43   1.1       cgd #endif /* LIBC_SCCS and not lint */
     44   1.1       cgd 
     45   1.7       jtc #include "namespace.h"
     46   1.1       cgd #include <sys/param.h>
     47   1.1       cgd #include <sys/file.h>
     48  1.17     lukem 
     49   1.1       cgd #include <ctype.h>
     50  1.17     lukem #include <errno.h>
     51  1.13     lukem #include <nsswitch.h>
     52  1.17     lukem #include <paths.h>
     53  1.17     lukem #include <stdio.h>
     54   1.1       cgd #include <stdlib.h>
     55  1.13     lukem #include <string.h>
     56  1.13     lukem #include <stringlist.h>
     57  1.17     lukem #include <unistd.h>
     58  1.17     lukem 
     59  1.13     lukem #ifdef HESIOD
     60  1.13     lukem #include <hesiod.h>
     61  1.13     lukem #endif
     62  1.13     lukem #ifdef YP
     63  1.13     lukem #include <rpc/rpc.h>
     64  1.13     lukem #include <rpcsvc/ypclnt.h>
     65  1.13     lukem #include <rpcsvc/yp_prot.h>
     66  1.13     lukem #endif
     67   1.7       jtc 
     68   1.7       jtc #ifdef __weak_alias
     69   1.7       jtc __weak_alias(endusershell,_endusershell);
     70   1.7       jtc __weak_alias(getusershell,_getusershell);
     71   1.7       jtc __weak_alias(setusershell,_setusershell);
     72   1.7       jtc #endif
     73   1.1       cgd 
     74   1.1       cgd /*
     75   1.5       cgd  * Local shells should NOT be added here.  They should be added in
     76   1.5       cgd  * /etc/shells.
     77   1.1       cgd  */
     78   1.1       cgd 
     79   1.9   mycroft static const char *const okshells[] = { _PATH_BSHELL, _PATH_CSHELL, NULL };
     80  1.13     lukem static const char *const *curshell;
     81  1.13     lukem static StringList	 *sl;
     82  1.13     lukem 
     83   1.9   mycroft static const char *const *initshells __P((void));
     84   1.1       cgd 
     85   1.1       cgd /*
     86  1.13     lukem  * Get a list of shells from "shells" nsswitch database
     87   1.1       cgd  */
     88  1.10   mycroft __aconst char *
     89   1.1       cgd getusershell()
     90   1.1       cgd {
     91  1.10   mycroft 	__aconst char *ret;
     92   1.1       cgd 
     93   1.1       cgd 	if (curshell == NULL)
     94   1.1       cgd 		curshell = initshells();
     95  1.16  christos 	/*LINTED*/
     96  1.10   mycroft 	ret = (__aconst char *)*curshell;
     97   1.1       cgd 	if (ret != NULL)
     98   1.1       cgd 		curshell++;
     99   1.1       cgd 	return (ret);
    100   1.1       cgd }
    101   1.1       cgd 
    102   1.1       cgd void
    103   1.1       cgd endusershell()
    104   1.1       cgd {
    105  1.13     lukem 	if (sl)
    106  1.13     lukem 		sl_free(sl, 1);
    107  1.13     lukem 	sl = NULL;
    108   1.1       cgd 	curshell = NULL;
    109   1.1       cgd }
    110   1.1       cgd 
    111   1.1       cgd void
    112   1.1       cgd setusershell()
    113   1.1       cgd {
    114   1.1       cgd 
    115   1.1       cgd 	curshell = initshells();
    116   1.1       cgd }
    117   1.1       cgd 
    118  1.13     lukem 
    119  1.13     lukem static int	_local_initshells __P((void *, void *, va_list));
    120  1.13     lukem 
    121  1.16  christos /*ARGSUSED*/
    122  1.13     lukem static int
    123  1.13     lukem _local_initshells(rv, cb_data, ap)
    124  1.13     lukem 	void	*rv;
    125  1.13     lukem 	void	*cb_data;
    126  1.13     lukem 	va_list	 ap;
    127   1.1       cgd {
    128  1.13     lukem 	char	*sp, *cp;
    129  1.13     lukem 	FILE	*fp;
    130  1.13     lukem 	char	 line[MAXPATHLEN + 2];
    131  1.13     lukem 
    132  1.13     lukem 	if (sl)
    133  1.13     lukem 		sl_free(sl, 1);
    134  1.13     lukem 	sl = sl_init();
    135  1.13     lukem 
    136   1.5       cgd 	if ((fp = fopen(_PATH_SHELLS, "r")) == NULL)
    137  1.13     lukem 		return NS_UNAVAIL;
    138  1.13     lukem 
    139  1.13     lukem 	sp = cp = line;
    140   1.1       cgd 	while (fgets(cp, MAXPATHLEN + 1, fp) != NULL) {
    141   1.1       cgd 		while (*cp != '#' && *cp != '/' && *cp != '\0')
    142   1.1       cgd 			cp++;
    143   1.1       cgd 		if (*cp == '#' || *cp == '\0')
    144   1.1       cgd 			continue;
    145  1.13     lukem 		sp = cp;
    146   1.1       cgd 		while (!isspace(*cp) && *cp != '#' && *cp != '\0')
    147   1.1       cgd 			cp++;
    148   1.1       cgd 		*cp++ = '\0';
    149  1.13     lukem 		sl_add(sl, strdup(sp));
    150   1.1       cgd 	}
    151   1.1       cgd 	(void)fclose(fp);
    152  1.13     lukem 	return NS_SUCCESS;
    153  1.13     lukem }
    154  1.13     lukem 
    155  1.13     lukem #ifdef HESIOD
    156  1.13     lukem static int	_dns_initshells __P((void *, void *, va_list));
    157  1.13     lukem 
    158  1.16  christos /*ARGSUSED*/
    159  1.13     lukem static int
    160  1.13     lukem _dns_initshells(rv, cb_data, ap)
    161  1.13     lukem 	void	*rv;
    162  1.13     lukem 	void	*cb_data;
    163  1.13     lukem 	va_list	 ap;
    164  1.13     lukem {
    165  1.13     lukem 	char	  shellname[] = "shells-XXXXX";
    166  1.17     lukem 	int	  hsindex, hpi, r;
    167  1.13     lukem 	char	**hp;
    168  1.17     lukem 	void	 *context;
    169  1.13     lukem 
    170  1.13     lukem 	if (sl)
    171  1.13     lukem 		sl_free(sl, 1);
    172  1.13     lukem 	sl = sl_init();
    173  1.17     lukem 	r = NS_UNAVAIL;
    174  1.17     lukem 	if (hesiod_init(&context) == -1)
    175  1.17     lukem 		return (r);
    176  1.13     lukem 
    177  1.13     lukem 	for (hsindex = 0; ; hsindex++) {
    178  1.13     lukem 		snprintf(shellname, sizeof(shellname)-1, "shells-%d", hsindex);
    179  1.17     lukem 		hp = hesiod_resolve(context, shellname, "shells");
    180  1.13     lukem 		if (hp == NULL) {
    181  1.17     lukem 			if (errno == ENOENT) {
    182  1.13     lukem 				if (hsindex == 0)
    183  1.17     lukem 					r = NS_NOTFOUND;
    184  1.17     lukem 				else
    185  1.17     lukem 					r = NS_SUCCESS;
    186  1.13     lukem 			}
    187  1.17     lukem 			break;
    188  1.13     lukem 		} else {
    189  1.13     lukem 			for (hpi = 0; hp[hpi]; hpi++)
    190  1.13     lukem 				sl_add(sl, hp[hpi]);
    191  1.13     lukem 			free(hp);
    192  1.13     lukem 		}
    193  1.13     lukem 	}
    194  1.17     lukem 	hesiod_end(context);
    195  1.17     lukem 	return (r);
    196  1.13     lukem }
    197  1.13     lukem #endif /* HESIOD */
    198  1.13     lukem 
    199  1.13     lukem #ifdef YP
    200  1.13     lukem static int	_nis_initshells __P((void *, void *, va_list));
    201  1.13     lukem 
    202  1.16  christos /*ARGSUSED*/
    203  1.13     lukem static int
    204  1.13     lukem _nis_initshells(rv, cb_data, ap)
    205  1.13     lukem 	void	*rv;
    206  1.13     lukem 	void	*cb_data;
    207  1.13     lukem 	va_list	 ap;
    208  1.13     lukem {
    209  1.13     lukem 	static char *ypdomain;
    210  1.13     lukem 
    211  1.13     lukem 	if (sl)
    212  1.13     lukem 		sl_free(sl, 1);
    213  1.13     lukem 	sl = sl_init();
    214  1.13     lukem 
    215  1.13     lukem 	if (ypdomain == NULL) {
    216  1.13     lukem 		switch (yp_get_default_domain(&ypdomain)) {
    217  1.13     lukem 		case 0:
    218  1.13     lukem 			break;
    219  1.13     lukem 		case YPERR_RESRC:
    220  1.13     lukem 			return NS_TRYAGAIN;
    221  1.13     lukem 		default:
    222  1.13     lukem 			return NS_UNAVAIL;
    223  1.13     lukem 		}
    224  1.13     lukem 	}
    225  1.13     lukem 
    226  1.13     lukem 	for (;;) {
    227  1.13     lukem 		char	*ypcur = NULL;
    228  1.16  christos 		int	 ypcurlen = 0;	/* XXX: GCC */
    229  1.13     lukem 		char	*key, *data;
    230  1.13     lukem 		int	 keylen, datalen;
    231  1.13     lukem 		int	 r;
    232  1.13     lukem 
    233  1.13     lukem 		key = data = NULL;
    234  1.13     lukem 		if (ypcur) {
    235  1.13     lukem 			r = yp_next(ypdomain, "shells", ypcur, ypcurlen,
    236  1.13     lukem 					&key, &keylen, &data, &datalen);
    237  1.13     lukem 			free(ypcur);
    238  1.13     lukem 			switch (r) {
    239  1.13     lukem 			case 0:
    240  1.13     lukem 				break;
    241  1.13     lukem 			case YPERR_NOMORE:
    242  1.13     lukem 				free(key);
    243  1.13     lukem 				free(data);
    244  1.13     lukem 				return NS_SUCCESS;
    245  1.13     lukem 			default:
    246  1.13     lukem 				free(key);
    247  1.13     lukem 				free(data);
    248  1.13     lukem 				return NS_UNAVAIL;
    249  1.13     lukem 			}
    250  1.13     lukem 			ypcur = key;
    251  1.13     lukem 			ypcurlen = keylen;
    252  1.13     lukem 		} else {
    253  1.13     lukem 			if (yp_first(ypdomain, "shells", &ypcur,
    254  1.13     lukem 				    &ypcurlen, &data, &datalen)) {
    255  1.13     lukem 				free(data);
    256  1.13     lukem 				return NS_UNAVAIL;
    257  1.13     lukem 			}
    258  1.13     lukem 		}
    259  1.13     lukem 		data[datalen] = '\0';		/* clear trailing \n */
    260  1.13     lukem 		sl_add(sl, data);
    261  1.13     lukem 	}
    262  1.13     lukem }
    263  1.13     lukem #endif /* YP */
    264  1.13     lukem 
    265  1.13     lukem static const char *const *
    266  1.13     lukem initshells()
    267  1.13     lukem {
    268  1.15     lukem 	static const ns_dtab dtab[] = {
    269  1.14     lukem 		NS_FILES_CB(_local_initshells, NULL)
    270  1.14     lukem 		NS_DNS_CB(_dns_initshells, NULL)
    271  1.14     lukem 		NS_NIS_CB(_nis_initshells, NULL)
    272  1.14     lukem 		{ 0 }
    273  1.13     lukem 	};
    274  1.13     lukem 	if (sl)
    275  1.13     lukem 		sl_free(sl, 1);
    276  1.13     lukem 	sl = sl_init();
    277  1.13     lukem 
    278  1.14     lukem 	if (nsdispatch(NULL, dtab, NSDB_SHELLS, "initshells", __nsdefaultsrc)
    279  1.14     lukem 	    != NS_SUCCESS) {
    280  1.13     lukem 		if (sl)
    281  1.13     lukem 			sl_free(sl, 1);
    282  1.13     lukem 		sl = NULL;
    283  1.13     lukem 		return (okshells);
    284  1.13     lukem 	}
    285  1.13     lukem 	sl_add(sl, NULL);
    286  1.13     lukem 
    287  1.13     lukem 	return (const char *const *)(sl->sl_str);
    288   1.1       cgd }
    289