Home | History | Annotate | Line # | Download | only in libhack
      1  1.12     joerg /*	$NetBSD: getpwent.c,v 1.12 2011/01/12 23:34:00 joerg Exp $	*/
      2   1.1       gwr 
      3   1.1       gwr /*
      4   1.5     lukem  * Copyright (c) 1987, 1988, 1989, 1993, 1994, 1995
      5   1.5     lukem  *	The Regents of the University of California.  All rights reserved.
      6   1.1       gwr  *
      7   1.1       gwr  * Redistribution and use in source and binary forms, with or without
      8   1.1       gwr  * modification, are permitted provided that the following conditions
      9   1.1       gwr  * are met:
     10   1.1       gwr  * 1. Redistributions of source code must retain the above copyright
     11   1.1       gwr  *    notice, this list of conditions and the following disclaimer.
     12   1.1       gwr  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       gwr  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       gwr  *    documentation and/or other materials provided with the distribution.
     15   1.7       agc  * 3. Neither the name of the University nor the names of its contributors
     16   1.5     lukem  *    may be used to endorse or promote products derived from this software
     17   1.5     lukem  *    without specific prior written permission.
     18   1.1       gwr  *
     19   1.5     lukem  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20   1.5     lukem  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.5     lukem  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.5     lukem  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23   1.5     lukem  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.5     lukem  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.5     lukem  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.5     lukem  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.5     lukem  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.5     lukem  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.5     lukem  * SUCH DAMAGE.
     30   1.1       gwr  */
     31   1.1       gwr 
     32   1.1       gwr /*
     33   1.5     lukem  * Copied from:  lib/libc/gen/getpwent.c
     34   1.5     lukem  *	NetBSD: getpwent.c,v 1.48 2000/10/03 03:22:26 enami Exp
     35   1.5     lukem  * and then gutted, leaving only /etc/master.passwd support.
     36   1.1       gwr  */
     37   1.1       gwr 
     38   1.4   tsutsui #include <sys/cdefs.h>
     39   1.4   tsutsui 
     40   1.4   tsutsui #ifdef __weak_alias
     41   1.4   tsutsui #define endpwent		_endpwent
     42   1.4   tsutsui #define getpwent		_getpwent
     43  1.10  sborrill #define getpwent_r		_getpwent_r
     44   1.5     lukem #define getpwuid		_getpwuid
     45   1.4   tsutsui #define getpwnam		_getpwnam
     46   1.5     lukem #define setpwent		_setpwent
     47   1.4   tsutsui #define setpassent		_setpassent
     48   1.9        he #define getpwuid_r		_getpwuid_r
     49   1.9        he #define getpwnam_r		_getpwnam_r
     50   1.4   tsutsui 
     51   1.4   tsutsui __weak_alias(endpwent,_endpwent)
     52   1.5     lukem __weak_alias(setpwent,_setpwent)
     53   1.4   tsutsui __weak_alias(setpassent,_setpassent)
     54  1.11        he 
     55  1.12     joerg __weak_alias(getpwent,__getpwent50)
     56  1.12     joerg __weak_alias(getpwent_r,__getpwent_r50)
     57  1.12     joerg __weak_alias(getpwuid,__getpwuid50)
     58  1.12     joerg __weak_alias(getpwnam,__getpwnam50)
     59  1.12     joerg __weak_alias(getpwuid_r,__getpwuid_r50)
     60  1.12     joerg __weak_alias(getpwnam_r,__getpwnam_r50)
     61   1.4   tsutsui #endif
     62   1.1       gwr 
     63   1.5     lukem #include <sys/param.h>
     64   1.5     lukem 
     65   1.5     lukem #include <limits.h>
     66   1.5     lukem #include <pwd.h>
     67   1.5     lukem #include <stdlib.h>
     68   1.5     lukem #include <stdio.h>
     69   1.5     lukem #include <string.h>
     70   1.5     lukem 
     71   1.5     lukem static	int		pwstart(void);
     72   1.8  christos static	int		pwscan(int, uid_t, const char *, struct passwd *,
     73   1.8  christos     char *, size_t);
     74   1.8  christos static	int		pwmatchline(int, uid_t, const char *, struct passwd *,
     75   1.8  christos     char *);
     76   1.5     lukem 
     77   1.5     lukem static	FILE		*_pw_fp;
     78   1.5     lukem static	struct passwd	_pw_passwd;	/* password structure */
     79   1.5     lukem static	int		_pw_stayopen;	/* keep fd's open */
     80   1.5     lukem static	int		_pw_filesdone;
     81   1.1       gwr 
     82   1.5     lukem #define	MAXLINELENGTH	1024
     83   1.5     lukem 
     84   1.5     lukem static	char		pwline[MAXLINELENGTH];
     85   1.1       gwr 
     86   1.1       gwr struct passwd *
     87   1.5     lukem getpwent(void)
     88   1.1       gwr {
     89   1.1       gwr 
     90   1.8  christos 	if ((!_pw_fp && !pwstart()) ||
     91   1.8  christos 	    !pwscan(0, 0, NULL, &_pw_passwd, pwline, sizeof(pwline)))
     92   1.5     lukem 		return (NULL);
     93   1.5     lukem 	return (&_pw_passwd);
     94   1.5     lukem }
     95   1.1       gwr 
     96  1.10  sborrill int
     97  1.10  sborrill getpwent_r(struct passwd *pwres, char *buf, size_t bufsiz,
     98  1.10  sborrill     struct passwd **pwd)
     99  1.10  sborrill {
    100  1.10  sborrill 	int rval;
    101  1.10  sborrill 
    102  1.10  sborrill 	if (!_pw_fp && !pwstart())
    103  1.10  sborrill 		return 1;
    104  1.10  sborrill 	rval = !pwscan(0, 0, NULL, pwres, buf, bufsiz);
    105  1.10  sborrill 	if (rval)
    106  1.10  sborrill 		*pwd = NULL;
    107  1.10  sborrill 	else
    108  1.10  sborrill 		*pwd = pwres;
    109  1.10  sborrill 	return rval;
    110  1.10  sborrill }
    111  1.10  sborrill 
    112   1.5     lukem struct passwd *
    113   1.5     lukem getpwnam(const char *name)
    114   1.5     lukem {
    115   1.8  christos 	struct passwd *pwd;
    116   1.8  christos 	return getpwnam_r(name, &_pw_passwd, pwline, sizeof(pwline),
    117   1.8  christos 	    &pwd) == 0 ? pwd : NULL;
    118   1.8  christos }
    119   1.8  christos 
    120   1.8  christos int
    121   1.8  christos getpwnam_r(const char *name, struct passwd *pwres, char *buf, size_t bufsiz,
    122   1.8  christos     struct passwd **pwd)
    123   1.8  christos {
    124   1.5     lukem 	int rval;
    125   1.5     lukem 
    126   1.5     lukem 	if (!pwstart())
    127   1.8  christos 		return 1;
    128   1.8  christos 	rval = !pwscan(1, 0, name, pwres, buf, bufsiz);
    129   1.5     lukem 	if (!_pw_stayopen)
    130   1.5     lukem 		endpwent();
    131   1.8  christos 	if (rval)
    132   1.8  christos 		*pwd = NULL;
    133   1.8  christos 	else
    134   1.8  christos 		*pwd = pwres;
    135   1.8  christos 	return rval;
    136   1.1       gwr }
    137   1.1       gwr 
    138   1.5     lukem struct passwd *
    139   1.5     lukem getpwuid(uid_t uid)
    140   1.1       gwr {
    141   1.8  christos 	struct passwd *pwd;
    142   1.8  christos 	return getpwuid_r(uid, &_pw_passwd, pwline, sizeof(pwline),
    143   1.8  christos 	    &pwd) == 0 ? pwd : NULL;
    144   1.8  christos }
    145   1.8  christos 
    146   1.8  christos int
    147   1.8  christos getpwuid_r(uid_t uid, struct passwd *pwres, char *buf, size_t bufsiz,
    148   1.8  christos     struct passwd **pwd)
    149   1.8  christos {
    150   1.5     lukem 	int rval;
    151   1.5     lukem 
    152   1.5     lukem 	if (!pwstart())
    153   1.8  christos 		return 1;
    154   1.8  christos 	rval = !pwscan(1, uid, NULL, pwres, buf, bufsiz);
    155   1.5     lukem 	if (!_pw_stayopen)
    156   1.5     lukem 		endpwent();
    157   1.8  christos 	if (rval)
    158   1.8  christos 		*pwd = NULL;
    159   1.8  christos 	else
    160   1.8  christos 		*pwd = pwres;
    161   1.8  christos 	return rval;
    162   1.1       gwr }
    163   1.1       gwr 
    164   1.1       gwr void
    165   1.5     lukem setpwent(void)
    166   1.1       gwr {
    167   1.5     lukem 
    168   1.1       gwr 	(void) setpassent(0);
    169   1.1       gwr }
    170   1.1       gwr 
    171   1.5     lukem int
    172   1.5     lukem setpassent(int stayopen)
    173   1.5     lukem {
    174   1.5     lukem 
    175   1.5     lukem 	if (!pwstart())
    176   1.5     lukem 		return 0;
    177   1.5     lukem 	_pw_stayopen = stayopen;
    178   1.5     lukem 	return 1;
    179   1.5     lukem }
    180   1.5     lukem 
    181   1.1       gwr void
    182   1.5     lukem endpwent(void)
    183   1.1       gwr {
    184   1.5     lukem 
    185   1.5     lukem 	_pw_filesdone = 0;
    186   1.5     lukem 	if (_pw_fp) {
    187   1.5     lukem 		(void)fclose(_pw_fp);
    188   1.5     lukem 		_pw_fp = NULL;
    189   1.2       gwr 	}
    190   1.1       gwr }
    191   1.1       gwr 
    192   1.5     lukem static int
    193   1.5     lukem pwstart(void)
    194   1.1       gwr {
    195   1.1       gwr 
    196   1.5     lukem 	_pw_filesdone = 0;
    197   1.5     lukem 	if (_pw_fp) {
    198   1.5     lukem 		rewind(_pw_fp);
    199   1.5     lukem 		return 1;
    200   1.5     lukem 	}
    201   1.5     lukem 	return (_pw_fp = fopen(_PATH_MASTERPASSWD, "r")) ? 1 : 0;
    202   1.5     lukem }
    203   1.1       gwr 
    204   1.1       gwr 
    205   1.5     lukem static int
    206   1.8  christos pwscan(int search, uid_t uid, const char *name, struct passwd *pwd, char *buf,
    207   1.8  christos     size_t bufsiz)
    208   1.1       gwr {
    209   1.1       gwr 
    210   1.5     lukem 	if (_pw_filesdone)
    211   1.5     lukem 		return 0;
    212   1.5     lukem 	for (;;) {
    213   1.8  christos 		if (!fgets(buf, bufsiz, _pw_fp)) {
    214   1.5     lukem 			if (!search)
    215   1.5     lukem 				_pw_filesdone = 1;
    216   1.5     lukem 			return 0;
    217   1.5     lukem 		}
    218   1.5     lukem 		/* skip lines that are too big */
    219   1.8  christos 		if (!strchr(buf, '\n')) {
    220   1.5     lukem 			int ch;
    221   1.5     lukem 
    222   1.5     lukem 			while ((ch = getc(_pw_fp)) != '\n' && ch != EOF)
    223   1.5     lukem 				;
    224   1.5     lukem 			continue;
    225   1.5     lukem 		}
    226   1.8  christos 		if (pwmatchline(search, uid, name, pwd, buf))
    227   1.5     lukem 			return 1;
    228   1.5     lukem 	}
    229   1.5     lukem 	/* NOTREACHED */
    230   1.5     lukem }
    231   1.1       gwr 
    232   1.5     lukem static int
    233   1.8  christos pwmatchline(int search, uid_t uid, const char *name, struct passwd *pwd,
    234   1.8  christos     char *buf)
    235   1.5     lukem {
    236   1.5     lukem 	unsigned long	id;
    237   1.5     lukem 	char		*cp, *bp, *ep;
    238   1.1       gwr 
    239   1.5     lukem 	/* name may be NULL if search is nonzero */
    240   1.5     lukem 
    241   1.8  christos 	bp = buf;
    242   1.8  christos 	memset(pwd, 0, sizeof(*pwd));
    243   1.8  christos 	pwd->pw_name = strsep(&bp, ":\n");		/* name */
    244   1.8  christos 	if (search && name && strcmp(pwd->pw_name, name))
    245   1.5     lukem 		return 0;
    246   1.5     lukem 
    247   1.8  christos 	pwd->pw_passwd = strsep(&bp, ":\n");		/* passwd */
    248   1.5     lukem 
    249   1.5     lukem 	if (!(cp = strsep(&bp, ":\n")))				/* uid */
    250   1.5     lukem 		return 0;
    251   1.5     lukem 	id = strtoul(cp, &ep, 10);
    252   1.5     lukem 	if (id > UID_MAX || *ep != '\0')
    253   1.5     lukem 		return 0;
    254   1.8  christos 	pwd->pw_uid = (uid_t)id;
    255   1.8  christos 	if (search && name == NULL && pwd->pw_uid != uid)
    256   1.5     lukem 		return 0;
    257   1.5     lukem 
    258   1.5     lukem 	if (!(cp = strsep(&bp, ":\n")))				/* gid */
    259   1.5     lukem 		return 0;
    260   1.5     lukem 	id = strtoul(cp, &ep, 10);
    261   1.5     lukem 	if (id > GID_MAX || *ep != '\0')
    262   1.5     lukem 		return 0;
    263   1.8  christos 	pwd->pw_gid = (gid_t)id;
    264   1.5     lukem 
    265   1.8  christos 	if (!(pwd->pw_class = strsep(&bp, ":")))		/* class */
    266   1.5     lukem 		return 0;
    267   1.5     lukem 	if (!(ep = strsep(&bp, ":")))				/* change */
    268   1.5     lukem 		return 0;
    269   1.5     lukem 	if (!(ep = strsep(&bp, ":")))				/* expire */
    270   1.5     lukem 		return 0;
    271   1.5     lukem 
    272   1.8  christos 	if (!(pwd->pw_gecos = strsep(&bp, ":\n")))		/* gecos */
    273   1.5     lukem 		return 0;
    274   1.8  christos 	if (!(pwd->pw_dir = strsep(&bp, ":\n")))		/* directory */
    275   1.5     lukem 		return 0;
    276   1.8  christos 	if (!(pwd->pw_shell = strsep(&bp, ":\n")))		/* shell */
    277   1.5     lukem 		return 0;
    278   1.1       gwr 
    279   1.5     lukem 	if (strchr(bp, ':') != NULL)
    280   1.5     lukem 		return 0;
    281   1.1       gwr 
    282   1.5     lukem 	return 1;
    283   1.1       gwr }
    284