Home | History | Annotate | Line # | Download | only in gen
getcap.c revision 1.47
      1  1.47   jnemeth /*	$NetBSD: getcap.c,v 1.47 2006/07/04 03:53:54 jnemeth Exp $	*/
      2   1.9       cgd 
      3   1.1       cgd /*-
      4   1.9       cgd  * Copyright (c) 1992, 1993
      5   1.9       cgd  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * This code is derived from software contributed to Berkeley by
      8   1.1       cgd  * Casey Leedom of Lawrence Livermore National Laboratory.
      9   1.1       cgd  *
     10   1.1       cgd  * Redistribution and use in source and binary forms, with or without
     11   1.1       cgd  * modification, are permitted provided that the following conditions
     12   1.1       cgd  * are met:
     13   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     14   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     15   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     17   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     18  1.38       agc  * 3. Neither the name of the University nor the names of its contributors
     19   1.1       cgd  *    may be used to endorse or promote products derived from this software
     20   1.1       cgd  *    without specific prior written permission.
     21   1.1       cgd  *
     22   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32   1.1       cgd  * SUCH DAMAGE.
     33   1.1       cgd  */
     34   1.1       cgd 
     35  1.39     lukem #if HAVE_NBTOOL_CONFIG_H
     36  1.39     lukem #include "nbtool_config.h"
     37  1.37       uwe #endif
     38  1.37       uwe 
     39  1.13  christos #include <sys/cdefs.h>
     40   1.1       cgd #if defined(LIBC_SCCS) && !defined(lint)
     41   1.9       cgd #if 0
     42   1.9       cgd static char sccsid[] = "@(#)getcap.c	8.3 (Berkeley) 3/25/94";
     43   1.9       cgd #else
     44  1.47   jnemeth __RCSID("$NetBSD: getcap.c,v 1.47 2006/07/04 03:53:54 jnemeth Exp $");
     45   1.9       cgd #endif
     46   1.1       cgd #endif /* LIBC_SCCS and not lint */
     47   1.1       cgd 
     48  1.41  christos #ifndef SMALL
     49  1.14       jtc #include "namespace.h"
     50  1.41  christos #endif
     51   1.1       cgd #include <sys/types.h>
     52  1.36      tron #include <sys/param.h>
     53  1.30     lukem 
     54  1.30     lukem #include <assert.h>
     55   1.1       cgd #include <ctype.h>
     56  1.41  christos #ifndef SMALL
     57   1.1       cgd #include <db.h>
     58  1.41  christos #endif
     59   1.1       cgd #include <errno.h>
     60   1.1       cgd #include <fcntl.h>
     61   1.1       cgd #include <limits.h>
     62   1.1       cgd #include <stdio.h>
     63   1.1       cgd #include <stdlib.h>
     64   1.1       cgd #include <string.h>
     65   1.1       cgd #include <unistd.h>
     66  1.14       jtc 
     67  1.14       jtc #ifdef __weak_alias
     68  1.32   mycroft __weak_alias(cgetcap,_cgetcap)
     69  1.32   mycroft __weak_alias(cgetclose,_cgetclose)
     70  1.32   mycroft __weak_alias(cgetent,_cgetent)
     71  1.32   mycroft __weak_alias(cgetfirst,_cgetfirst)
     72  1.32   mycroft __weak_alias(cgetmatch,_cgetmatch)
     73  1.32   mycroft __weak_alias(cgetnext,_cgetnext)
     74  1.32   mycroft __weak_alias(cgetnum,_cgetnum)
     75  1.32   mycroft __weak_alias(cgetset,_cgetset)
     76  1.32   mycroft __weak_alias(cgetstr,_cgetstr)
     77  1.32   mycroft __weak_alias(cgetustr,_cgetustr)
     78  1.14       jtc #endif
     79   1.1       cgd 
     80   1.1       cgd #define	BFRAG		1024
     81   1.1       cgd #define	BSIZE		1024
     82   1.1       cgd #define	ESC		('[' & 037)	/* ASCII ESC */
     83   1.1       cgd #define	MAX_RECURSION	32		/* maximum getent recursion */
     84   1.1       cgd #define	SFRAG		100		/* cgetstr mallocs in SFRAG chunks */
     85   1.1       cgd 
     86   1.1       cgd #define RECOK	(char)0
     87   1.1       cgd #define TCERR	(char)1
     88   1.1       cgd #define	SHADOW	(char)2
     89   1.1       cgd 
     90   1.1       cgd static size_t	 topreclen;	/* toprec length */
     91   1.1       cgd static char	*toprec;	/* Additional record specified by cgetset() */
     92   1.1       cgd static int	 gottoprec;	/* Flag indicating retrieval of toprecord */
     93   1.1       cgd 
     94  1.41  christos #ifndef SMALL
     95  1.40  christos static int	cdbget(DB *, char **, const char *);
     96  1.41  christos #endif
     97  1.40  christos static int 	getent(char **, size_t *, const char * const *, int,
     98  1.40  christos     const char *, int, char *);
     99  1.40  christos static int	nfcmp(char *, char *);
    100   1.1       cgd 
    101   1.1       cgd /*
    102   1.1       cgd  * Cgetset() allows the addition of a user specified buffer to be added
    103   1.1       cgd  * to the database array, in effect "pushing" the buffer on top of the
    104   1.1       cgd  * virtual database. 0 is returned on success, -1 on failure.
    105   1.1       cgd  */
    106   1.1       cgd int
    107  1.40  christos cgetset(const char *ent)
    108   1.1       cgd {
    109  1.27       abs 	const char *source, *check;
    110  1.27       abs 	char *dest;
    111  1.27       abs 
    112   1.1       cgd 	if (ent == NULL) {
    113  1.47   jnemeth 		if (toprec != NULL)
    114   1.1       cgd 			free(toprec);
    115   1.1       cgd                 toprec = NULL;
    116   1.1       cgd                 topreclen = 0;
    117  1.47   jnemeth                 return 0;
    118   1.1       cgd         }
    119   1.1       cgd         topreclen = strlen(ent);
    120  1.47   jnemeth         if ((toprec = malloc(topreclen + 1)) == NULL) {
    121   1.1       cgd 		errno = ENOMEM;
    122  1.47   jnemeth                 return -1;
    123   1.1       cgd 	}
    124   1.1       cgd 	gottoprec = 0;
    125  1.27       abs 
    126  1.47   jnemeth 	source = ent;
    127  1.47   jnemeth 	dest = toprec;
    128  1.47   jnemeth 	while (*source != '\0') { /* Strip whitespace */
    129  1.27       abs 		*dest++ = *source++; /* Do not check first field */
    130  1.27       abs 		while (*source == ':') {
    131  1.47   jnemeth 			check = source + 1;
    132  1.29       abs 			while (*check && (isspace((unsigned char)*check) ||
    133  1.29       abs 			    (*check=='\\' && isspace((unsigned char)check[1]))))
    134  1.27       abs 				++check;
    135  1.47   jnemeth 			if (*check == ':')
    136  1.47   jnemeth 				source = check;
    137  1.27       abs 			else
    138  1.27       abs 				break;
    139  1.27       abs 
    140  1.27       abs 		}
    141  1.27       abs 	}
    142  1.47   jnemeth 	*dest = 0;
    143  1.27       abs 
    144  1.47   jnemeth         return 0;
    145   1.1       cgd }
    146   1.1       cgd 
    147   1.1       cgd /*
    148   1.1       cgd  * Cgetcap searches the capability record buf for the capability cap with
    149   1.1       cgd  * type `type'.  A pointer to the value of cap is returned on success, NULL
    150   1.1       cgd  * if the requested capability couldn't be found.
    151   1.1       cgd  *
    152   1.1       cgd  * Specifying a type of ':' means that nothing should follow cap (:cap:).
    153   1.1       cgd  * In this case a pointer to the terminating ':' or NUL will be returned if
    154   1.1       cgd  * cap is found.
    155   1.1       cgd  *
    156   1.1       cgd  * If (cap, '@') or (cap, terminator, '@') is found before (cap, terminator)
    157   1.1       cgd  * return NULL.
    158   1.1       cgd  */
    159   1.1       cgd char *
    160   1.1       cgd cgetcap(buf, cap, type)
    161  1.21   mycroft 	char *buf;
    162  1.21   mycroft 	const char *cap;
    163   1.1       cgd 	int type;
    164   1.1       cgd {
    165  1.21   mycroft 	char *bp;
    166  1.21   mycroft 	const char *cp;
    167   1.1       cgd 
    168  1.30     lukem 	_DIAGASSERT(buf != NULL);
    169  1.30     lukem 	_DIAGASSERT(cap != NULL);
    170  1.30     lukem 
    171   1.1       cgd 	bp = buf;
    172   1.1       cgd 	for (;;) {
    173   1.1       cgd 		/*
    174   1.1       cgd 		 * Skip past the current capability field - it's either the
    175   1.1       cgd 		 * name field if this is the first time through the loop, or
    176   1.1       cgd 		 * the remainder of a field whose name failed to match cap.
    177   1.1       cgd 		 */
    178   1.1       cgd 		for (;;)
    179   1.1       cgd 			if (*bp == '\0')
    180  1.47   jnemeth 				return NULL;
    181  1.47   jnemeth 			else if (*bp++ == ':')
    182  1.47   jnemeth 				break;
    183   1.1       cgd 
    184   1.1       cgd 		/*
    185   1.1       cgd 		 * Try to match (cap, type) in buf.
    186   1.1       cgd 		 */
    187   1.1       cgd 		for (cp = cap; *cp == *bp && *bp != '\0'; cp++, bp++)
    188   1.1       cgd 			continue;
    189   1.1       cgd 		if (*cp != '\0')
    190   1.1       cgd 			continue;
    191   1.1       cgd 		if (*bp == '@')
    192  1.47   jnemeth 			return NULL;
    193   1.1       cgd 		if (type == ':') {
    194   1.1       cgd 			if (*bp != '\0' && *bp != ':')
    195   1.1       cgd 				continue;
    196  1.47   jnemeth 			return bp;
    197   1.1       cgd 		}
    198   1.1       cgd 		if (*bp != type)
    199   1.1       cgd 			continue;
    200   1.1       cgd 		bp++;
    201  1.47   jnemeth 		return *bp == '@' ? NULL : bp;
    202   1.1       cgd 	}
    203   1.1       cgd 	/* NOTREACHED */
    204   1.1       cgd }
    205   1.1       cgd 
    206   1.1       cgd /*
    207   1.1       cgd  * Cgetent extracts the capability record name from the NULL terminated file
    208   1.1       cgd  * array db_array and returns a pointer to a malloc'd copy of it in buf.
    209   1.1       cgd  * Buf must be retained through all subsequent calls to cgetcap, cgetnum,
    210   1.1       cgd  * cgetflag, and cgetstr, but may then be free'd.  0 is returned on success,
    211   1.1       cgd  * -1 if the requested record couldn't be found, -2 if a system error was
    212   1.1       cgd  * encountered (couldn't open/read a file, etc.), and -3 if a potential
    213   1.1       cgd  * reference loop is detected.
    214   1.1       cgd  */
    215  1.45  christos /* coverity[+alloc : arg-*0] */
    216   1.1       cgd int
    217  1.40  christos cgetent(char **buf, const char * const *db_array, const char *name)
    218   1.1       cgd {
    219  1.18   thorpej 	size_t dummy;
    220   1.1       cgd 
    221  1.30     lukem 	_DIAGASSERT(buf != NULL);
    222  1.30     lukem 	_DIAGASSERT(db_array != NULL);
    223  1.30     lukem 	_DIAGASSERT(name != NULL);
    224  1.30     lukem 
    225  1.47   jnemeth 	return getent(buf, &dummy, db_array, -1, name, 0, NULL);
    226   1.1       cgd }
    227   1.1       cgd 
    228   1.1       cgd /*
    229   1.1       cgd  * Getent implements the functions of cgetent.  If fd is non-negative,
    230   1.1       cgd  * *db_array has already been opened and fd is the open file descriptor.  We
    231   1.1       cgd  * do this to save time and avoid using up file descriptors for tc=
    232   1.1       cgd  * recursions.
    233   1.1       cgd  *
    234   1.1       cgd  * Getent returns the same success/failure codes as cgetent.  On success, a
    235   1.1       cgd  * pointer to a malloc'ed capability record with all tc= capabilities fully
    236   1.1       cgd  * expanded and its length (not including trailing ASCII NUL) are left in
    237   1.1       cgd  * *cap and *len.
    238   1.1       cgd  *
    239   1.1       cgd  * Basic algorithm:
    240   1.1       cgd  *	+ Allocate memory incrementally as needed in chunks of size BFRAG
    241   1.1       cgd  *	  for capability buffer.
    242   1.1       cgd  *	+ Recurse for each tc=name and interpolate result.  Stop when all
    243   1.1       cgd  *	  names interpolated, a name can't be found, or depth exceeds
    244   1.1       cgd  *	  MAX_RECURSION.
    245   1.1       cgd  */
    246  1.45  christos /* coverity[+alloc : arg-*0] */
    247   1.1       cgd static int
    248  1.40  christos getent(char **cap, size_t *len, const char * const *db_array, int fd,
    249  1.40  christos     const char *name, int depth, char *nfield)
    250   1.1       cgd {
    251  1.41  christos #ifndef SMALL
    252   1.1       cgd 	DB *capdbp;
    253  1.41  christos 	char pbuf[MAXPATHLEN];
    254  1.41  christos 	char *cbuf;
    255  1.41  christos 	int retval;
    256  1.41  christos 	size_t clen;
    257  1.41  christos #endif
    258  1.41  christos 	char *record, *newrecord;
    259  1.47   jnemeth 	char *r_end, *rp;	/* pacify gcc */
    260  1.40  christos 	const char * const *db_p;
    261  1.47   jnemeth 	int myfd, eof, foundit;
    262   1.1       cgd 	int tc_not_resolved;
    263   1.1       cgd 
    264  1.30     lukem 	_DIAGASSERT(cap != NULL);
    265  1.30     lukem 	_DIAGASSERT(len != NULL);
    266  1.30     lukem 	_DIAGASSERT(db_array != NULL);
    267  1.30     lukem 	/* fd may be -1 */
    268  1.30     lukem 	_DIAGASSERT(name != NULL);
    269  1.30     lukem 	/* nfield may be NULL */
    270  1.30     lukem 
    271  1.47   jnemeth 	myfd = 0;
    272  1.47   jnemeth 	rp = NULL;
    273  1.47   jnemeth 
    274   1.1       cgd 	/*
    275   1.1       cgd 	 * Return with ``loop detected'' error if we've recursed more than
    276   1.1       cgd 	 * MAX_RECURSION times.
    277   1.1       cgd 	 */
    278   1.1       cgd 	if (depth > MAX_RECURSION)
    279  1.47   jnemeth 		return -3;
    280   1.1       cgd 
    281   1.1       cgd 	/*
    282   1.1       cgd 	 * Check if we have a top record from cgetset().
    283   1.1       cgd          */
    284   1.1       cgd 	if (depth == 0 && toprec != NULL && cgetmatch(toprec, name) == 0) {
    285  1.47   jnemeth 		if ((record = malloc(topreclen + BFRAG)) == NULL) {
    286   1.1       cgd 			errno = ENOMEM;
    287  1.47   jnemeth 			return -2;
    288   1.1       cgd 		}
    289  1.11       mrg 		(void)strcpy(record, toprec);	/* XXX: strcpy is safe */
    290   1.1       cgd 		db_p = db_array;
    291   1.1       cgd 		rp = record + topreclen + 1;
    292   1.1       cgd 		r_end = rp + BFRAG;
    293   1.1       cgd 		goto tc_exp;
    294   1.1       cgd 	}
    295   1.1       cgd 	/*
    296   1.1       cgd 	 * Allocate first chunk of memory.
    297   1.1       cgd 	 */
    298   1.1       cgd 	if ((record = malloc(BFRAG)) == NULL) {
    299   1.1       cgd 		errno = ENOMEM;
    300  1.47   jnemeth 		return -2;
    301   1.1       cgd 	}
    302   1.1       cgd 	r_end = record + BFRAG;
    303   1.1       cgd 	foundit = 0;
    304   1.1       cgd 	/*
    305   1.1       cgd 	 * Loop through database array until finding the record.
    306   1.1       cgd 	 */
    307   1.1       cgd 
    308   1.1       cgd 	for (db_p = db_array; *db_p != NULL; db_p++) {
    309   1.1       cgd 		eof = 0;
    310   1.1       cgd 
    311   1.1       cgd 		/*
    312   1.1       cgd 		 * Open database if not already open.
    313   1.1       cgd 		 */
    314   1.1       cgd 
    315   1.1       cgd 		if (fd >= 0) {
    316  1.15    kleink 			(void)lseek(fd, (off_t)0, SEEK_SET);
    317   1.1       cgd 		} else {
    318  1.41  christos #ifndef SMALL
    319   1.1       cgd 			(void)snprintf(pbuf, sizeof(pbuf), "%s.db", *db_p);
    320   1.1       cgd 			if ((capdbp = dbopen(pbuf, O_RDONLY, 0, DB_HASH, 0))
    321   1.1       cgd 			     != NULL) {
    322   1.1       cgd 				free(record);
    323   1.1       cgd 				retval = cdbget(capdbp, &record, name);
    324   1.8       cgd 				if (retval < 0) {
    325   1.8       cgd 					/* no record available */
    326   1.8       cgd 					(void)capdbp->close(capdbp);
    327  1.47   jnemeth 					return retval;
    328   1.8       cgd 				}
    329   1.8       cgd 				/* save the data; close frees it */
    330   1.7       cgd 				clen = strlen(record);
    331  1.46   jnemeth 				if ((cbuf = malloc(clen + 1)) == NULL) {
    332  1.46   jnemeth 					(void)capdbp->close(capdbp);
    333  1.46   jnemeth 					errno = ENOMEM;
    334  1.47   jnemeth 					return -2;
    335  1.46   jnemeth 				}
    336  1.23     perry 				memmove(cbuf, record, clen + 1);
    337   1.7       cgd 				if (capdbp->close(capdbp) < 0) {
    338  1.30     lukem 					int serrno = errno;
    339  1.30     lukem 
    340   1.7       cgd 					free(cbuf);
    341  1.30     lukem 					errno = serrno;
    342  1.47   jnemeth 					return -2;
    343   1.7       cgd 				}
    344   1.7       cgd 				*len = clen;
    345   1.7       cgd 				*cap = cbuf;
    346  1.47   jnemeth 				return retval;
    347  1.41  christos 			} else
    348  1.41  christos #endif
    349  1.41  christos 			{
    350   1.1       cgd 				fd = open(*db_p, O_RDONLY, 0);
    351   1.1       cgd 				if (fd < 0) {
    352   1.1       cgd 					/* No error on unfound file. */
    353  1.10   mycroft 					continue;
    354   1.1       cgd 				}
    355   1.1       cgd 				myfd = 1;
    356   1.1       cgd 			}
    357   1.1       cgd 		}
    358   1.1       cgd 		/*
    359   1.1       cgd 		 * Find the requested capability record ...
    360   1.1       cgd 		 */
    361   1.1       cgd 		{
    362   1.1       cgd 		char buf[BUFSIZ];
    363  1.20   mycroft 		char *b_end, *bp, *cp;
    364  1.20   mycroft 		int c, slash;
    365   1.1       cgd 
    366   1.1       cgd 		/*
    367   1.1       cgd 		 * Loop invariants:
    368   1.1       cgd 		 *	There is always room for one more character in record.
    369   1.1       cgd 		 *	R_end always points just past end of record.
    370   1.1       cgd 		 *	Rp always points just past last character in record.
    371   1.1       cgd 		 *	B_end always points just past last character in buf.
    372   1.1       cgd 		 *	Bp always points at next character in buf.
    373  1.20   mycroft 		 *	Cp remembers where the last colon was.
    374   1.1       cgd 		 */
    375   1.1       cgd 		b_end = buf;
    376   1.1       cgd 		bp = buf;
    377  1.47   jnemeth 		cp = NULL;
    378  1.20   mycroft 		slash = 0;
    379   1.1       cgd 		for (;;) {
    380   1.1       cgd 			/*
    381   1.1       cgd 			 * Read in a line implementing (\, newline)
    382   1.1       cgd 			 * line continuation.
    383   1.1       cgd 			 */
    384   1.1       cgd 			rp = record;
    385   1.1       cgd 			for (;;) {
    386   1.1       cgd 				if (bp >= b_end) {
    387   1.1       cgd 					int n;
    388   1.1       cgd 
    389   1.1       cgd 					n = read(fd, buf, sizeof(buf));
    390   1.1       cgd 					if (n <= 0) {
    391   1.1       cgd 						if (myfd)
    392   1.1       cgd 							(void)close(fd);
    393   1.1       cgd 						if (n < 0) {
    394  1.30     lukem 							int serrno = errno;
    395  1.30     lukem 
    396   1.1       cgd 							free(record);
    397  1.30     lukem 							errno = serrno;
    398  1.47   jnemeth 							return -2;
    399   1.1       cgd 						} else {
    400   1.1       cgd 							fd = -1;
    401   1.1       cgd 							eof = 1;
    402   1.1       cgd 							break;
    403   1.1       cgd 						}
    404   1.1       cgd 					}
    405   1.1       cgd 					b_end = buf+n;
    406   1.1       cgd 					bp = buf;
    407   1.1       cgd 				}
    408   1.1       cgd 
    409   1.1       cgd 				c = *bp++;
    410   1.1       cgd 				if (c == '\n') {
    411  1.20   mycroft 					if (slash) {
    412  1.20   mycroft 						slash = 0;
    413   1.1       cgd 						rp--;
    414   1.1       cgd 						continue;
    415   1.1       cgd 					} else
    416   1.1       cgd 						break;
    417   1.1       cgd 				}
    418  1.20   mycroft 				if (slash) {
    419  1.20   mycroft 					slash = 0;
    420  1.20   mycroft 					cp = 0;
    421  1.20   mycroft 				}
    422  1.20   mycroft 				if (c == ':') {
    423  1.20   mycroft 					/*
    424  1.20   mycroft 					 * If the field was `empty' (i.e.
    425  1.20   mycroft 					 * contained only white space), back up
    426  1.20   mycroft 					 * to the colon (eliminating the
    427  1.20   mycroft 					 * field).
    428  1.20   mycroft 					 */
    429  1.47   jnemeth 					if (cp != NULL)
    430  1.20   mycroft 						rp = cp;
    431  1.20   mycroft 					else
    432  1.20   mycroft 						cp = rp;
    433  1.20   mycroft 				} else if (c == '\\') {
    434  1.20   mycroft 					slash = 1;
    435  1.20   mycroft 				} else if (c != ' ' && c != '\t') {
    436  1.20   mycroft 					/*
    437  1.20   mycroft 					 * Forget where the colon was, as this
    438  1.20   mycroft 					 * is not an empty field.
    439  1.20   mycroft 					 */
    440  1.20   mycroft 					cp = 0;
    441  1.20   mycroft 				}
    442   1.1       cgd 				*rp++ = c;
    443   1.1       cgd 
    444   1.1       cgd 				/*
    445   1.1       cgd 				 * Enforce loop invariant: if no room
    446   1.1       cgd 				 * left in record buffer, try to get
    447   1.1       cgd 				 * some more.
    448   1.1       cgd 				 */
    449   1.1       cgd 				if (rp >= r_end) {
    450   1.1       cgd 					u_int pos;
    451   1.1       cgd 					size_t newsize;
    452   1.1       cgd 
    453   1.1       cgd 					pos = rp - record;
    454   1.1       cgd 					newsize = r_end - record + BFRAG;
    455  1.33    itojun 					newrecord = realloc(record, newsize);
    456  1.33    itojun 					if (newrecord == NULL) {
    457  1.33    itojun 						free(record);
    458   1.1       cgd 						if (myfd)
    459   1.1       cgd 							(void)close(fd);
    460  1.30     lukem 						errno = ENOMEM;
    461  1.47   jnemeth 						return -2;
    462   1.1       cgd 					}
    463  1.33    itojun 					record = newrecord;
    464   1.1       cgd 					r_end = record + newsize;
    465   1.1       cgd 					rp = record + pos;
    466   1.1       cgd 				}
    467   1.1       cgd 			}
    468  1.20   mycroft 			/* Eliminate any white space after the last colon. */
    469  1.20   mycroft 			if (cp)
    470  1.20   mycroft 				rp = cp + 1;
    471  1.20   mycroft 			/* Loop invariant lets us do this. */
    472   1.1       cgd 			*rp++ = '\0';
    473   1.1       cgd 
    474   1.1       cgd 			/*
    475   1.1       cgd 			 * If encountered eof check next file.
    476   1.1       cgd 			 */
    477   1.1       cgd 			if (eof)
    478   1.1       cgd 				break;
    479   1.1       cgd 
    480   1.1       cgd 			/*
    481   1.1       cgd 			 * Toss blank lines and comments.
    482   1.1       cgd 			 */
    483   1.1       cgd 			if (*record == '\0' || *record == '#')
    484   1.1       cgd 				continue;
    485   1.1       cgd 
    486   1.1       cgd 			/*
    487   1.1       cgd 			 * See if this is the record we want ...
    488   1.1       cgd 			 */
    489  1.47   jnemeth 			if (cgetmatch(record, name) == 0)
    490   1.1       cgd 				if (nfield == NULL || !nfcmp(nfield, record)) {
    491   1.1       cgd 					foundit = 1;
    492   1.1       cgd 					break;	/* found it! */
    493   1.1       cgd 				}
    494   1.1       cgd 		}
    495  1.47   jnemeth 		}
    496   1.1       cgd 		if (foundit)
    497   1.1       cgd 			break;
    498   1.1       cgd 	}
    499   1.1       cgd 
    500   1.1       cgd 	if (!foundit)
    501  1.47   jnemeth 		return -1;
    502   1.1       cgd 
    503   1.1       cgd 	/*
    504   1.1       cgd 	 * Got the capability record, but now we have to expand all tc=name
    505   1.1       cgd 	 * references in it ...
    506   1.1       cgd 	 */
    507   1.1       cgd tc_exp:	{
    508  1.16     perry 		char *newicap, *s;
    509  1.17     perry 		size_t ilen, newilen;
    510   1.1       cgd 		int diff, iret, tclen;
    511   1.1       cgd 		char *icap, *scan, *tc, *tcstart, *tcend;
    512   1.1       cgd 
    513   1.1       cgd 		/*
    514   1.1       cgd 		 * Loop invariants:
    515   1.1       cgd 		 *	There is room for one more character in record.
    516   1.1       cgd 		 *	R_end points just past end of record.
    517   1.1       cgd 		 *	Rp points just past last character in record.
    518   1.1       cgd 		 *	Scan points at remainder of record that needs to be
    519   1.1       cgd 		 *	scanned for tc=name constructs.
    520   1.1       cgd 		 */
    521   1.1       cgd 		scan = record;
    522   1.1       cgd 		tc_not_resolved = 0;
    523   1.1       cgd 		for (;;) {
    524   1.1       cgd 			if ((tc = cgetcap(scan, "tc", '=')) == NULL)
    525   1.1       cgd 				break;
    526   1.1       cgd 
    527   1.1       cgd 			/*
    528   1.1       cgd 			 * Find end of tc=name and stomp on the trailing `:'
    529   1.1       cgd 			 * (if present) so we can use it to call ourselves.
    530   1.1       cgd 			 */
    531   1.1       cgd 			s = tc;
    532   1.1       cgd 			for (;;)
    533   1.1       cgd 				if (*s == '\0')
    534   1.1       cgd 					break;
    535   1.1       cgd 				else
    536   1.1       cgd 					if (*s++ == ':') {
    537   1.1       cgd 						*(s - 1) = '\0';
    538   1.1       cgd 						break;
    539   1.1       cgd 					}
    540   1.1       cgd 			tcstart = tc - 3;
    541   1.1       cgd 			tclen = s - tcstart;
    542   1.1       cgd 			tcend = s;
    543   1.1       cgd 
    544   1.1       cgd 			iret = getent(&icap, &ilen, db_p, fd, tc, depth+1,
    545   1.1       cgd 				      NULL);
    546   1.1       cgd 			newicap = icap;		/* Put into a register. */
    547   1.1       cgd 			newilen = ilen;
    548   1.1       cgd 			if (iret != 0) {
    549   1.1       cgd 				/* an error */
    550   1.1       cgd 				if (iret < -1) {
    551   1.1       cgd 					if (myfd)
    552   1.1       cgd 						(void)close(fd);
    553   1.1       cgd 					free(record);
    554  1.47   jnemeth 					return iret;
    555   1.1       cgd 				}
    556   1.1       cgd 				if (iret == 1)
    557   1.1       cgd 					tc_not_resolved = 1;
    558   1.1       cgd 				/* couldn't resolve tc */
    559   1.1       cgd 				if (iret == -1) {
    560   1.1       cgd 					*(s - 1) = ':';
    561   1.1       cgd 					scan = s - 1;
    562   1.1       cgd 					tc_not_resolved = 1;
    563   1.1       cgd 					continue;
    564   1.1       cgd 
    565   1.1       cgd 				}
    566   1.1       cgd 			}
    567   1.1       cgd 			/* not interested in name field of tc'ed record */
    568   1.1       cgd 			s = newicap;
    569   1.1       cgd 			for (;;)
    570   1.1       cgd 				if (*s == '\0')
    571   1.1       cgd 					break;
    572  1.47   jnemeth 				else if (*s++ == ':')
    573  1.47   jnemeth 					break;
    574   1.1       cgd 			newilen -= s - newicap;
    575   1.1       cgd 			newicap = s;
    576   1.1       cgd 
    577   1.1       cgd 			/* make sure interpolated record is `:'-terminated */
    578   1.1       cgd 			s += newilen;
    579  1.47   jnemeth 			if (*(s - 1) != ':') {
    580   1.1       cgd 				*s = ':';	/* overwrite NUL with : */
    581   1.1       cgd 				newilen++;
    582   1.1       cgd 			}
    583   1.1       cgd 
    584   1.1       cgd 			/*
    585   1.1       cgd 			 * Make sure there's enough room to insert the
    586   1.1       cgd 			 * new record.
    587   1.1       cgd 			 */
    588   1.1       cgd 			diff = newilen - tclen;
    589   1.1       cgd 			if (diff >= r_end - rp) {
    590   1.1       cgd 				u_int pos, tcpos, tcposend;
    591   1.1       cgd 				size_t newsize;
    592   1.1       cgd 
    593   1.1       cgd 				pos = rp - record;
    594   1.1       cgd 				newsize = r_end - record + diff + BFRAG;
    595   1.1       cgd 				tcpos = tcstart - record;
    596   1.1       cgd 				tcposend = tcend - record;
    597  1.33    itojun 				newrecord = realloc(record, newsize);
    598  1.33    itojun 				if (newrecord == NULL) {
    599  1.33    itojun 					free(record);
    600   1.1       cgd 					if (myfd)
    601   1.1       cgd 						(void)close(fd);
    602   1.1       cgd 					free(icap);
    603  1.30     lukem 					errno = ENOMEM;
    604  1.47   jnemeth 					return -2;
    605   1.1       cgd 				}
    606  1.33    itojun 				record = newrecord;
    607   1.1       cgd 				r_end = record + newsize;
    608   1.1       cgd 				rp = record + pos;
    609   1.1       cgd 				tcstart = record + tcpos;
    610   1.1       cgd 				tcend = record + tcposend;
    611   1.1       cgd 			}
    612   1.1       cgd 
    613   1.1       cgd 			/*
    614   1.1       cgd 			 * Insert tc'ed record into our record.
    615   1.1       cgd 			 */
    616   1.1       cgd 			s = tcstart + newilen;
    617  1.23     perry 			memmove(s, tcend,  (size_t)(rp - tcend));
    618  1.23     perry 			memmove(tcstart, newicap, newilen);
    619   1.1       cgd 			rp += diff;
    620   1.1       cgd 			free(icap);
    621   1.1       cgd 
    622   1.1       cgd 			/*
    623   1.1       cgd 			 * Start scan on `:' so next cgetcap works properly
    624   1.1       cgd 			 * (cgetcap always skips first field).
    625   1.1       cgd 			 */
    626  1.47   jnemeth 			scan = s - 1;
    627   1.1       cgd 		}
    628   1.1       cgd 
    629   1.1       cgd 	}
    630   1.1       cgd 	/*
    631   1.1       cgd 	 * Close file (if we opened it), give back any extra memory, and
    632   1.1       cgd 	 * return capability, length and success.
    633   1.1       cgd 	 */
    634   1.1       cgd 	if (myfd)
    635   1.1       cgd 		(void)close(fd);
    636   1.1       cgd 	*len = rp - record - 1;	/* don't count NUL */
    637  1.33    itojun 	if (r_end > rp) {
    638  1.33    itojun 		if ((newrecord =
    639   1.1       cgd 		     realloc(record, (size_t)(rp - record))) == NULL) {
    640  1.33    itojun 			free(record);
    641   1.1       cgd 			errno = ENOMEM;
    642  1.47   jnemeth 			return -2;
    643   1.1       cgd 		}
    644  1.33    itojun 		record = newrecord;
    645  1.33    itojun 	}
    646   1.1       cgd 
    647   1.1       cgd 	*cap = record;
    648   1.1       cgd 	if (tc_not_resolved)
    649  1.47   jnemeth 		return 1;
    650  1.47   jnemeth 	return 0;
    651   1.1       cgd }
    652   1.1       cgd 
    653  1.41  christos #ifndef SMALL
    654   1.1       cgd static int
    655  1.40  christos cdbget(DB *capdbp, char **bp, const char *name)
    656   1.1       cgd {
    657  1.25  christos 	DBT key;
    658  1.24  christos 	DBT data;
    659   1.1       cgd 
    660  1.30     lukem 	_DIAGASSERT(capdbp != NULL);
    661  1.30     lukem 	_DIAGASSERT(bp != NULL);
    662  1.30     lukem 	_DIAGASSERT(name != NULL);
    663  1.30     lukem 
    664  1.42  christos 	key.data = __UNCONST(name);
    665   1.1       cgd 	key.size = strlen(name);
    666   1.1       cgd 
    667   1.1       cgd 	for (;;) {
    668   1.1       cgd 		/* Get the reference. */
    669   1.1       cgd 		switch(capdbp->get(capdbp, &key, &data, 0)) {
    670   1.1       cgd 		case -1:
    671  1.47   jnemeth 			return -2;
    672   1.1       cgd 		case 1:
    673  1.47   jnemeth 			return -1;
    674   1.1       cgd 		}
    675   1.1       cgd 
    676   1.1       cgd 		/* If not an index to another record, leave. */
    677   1.1       cgd 		if (((char *)data.data)[0] != SHADOW)
    678   1.1       cgd 			break;
    679   1.1       cgd 
    680   1.1       cgd 		key.data = (char *)data.data + 1;
    681   1.1       cgd 		key.size = data.size - 1;
    682   1.1       cgd 	}
    683   1.1       cgd 
    684   1.1       cgd 	*bp = (char *)data.data + 1;
    685  1.47   jnemeth 	return ((char *)(data.data))[0] == TCERR ? 1 : 0;
    686   1.1       cgd }
    687  1.41  christos #endif
    688   1.1       cgd 
    689   1.1       cgd /*
    690   1.1       cgd  * Cgetmatch will return 0 if name is one of the names of the capability
    691   1.1       cgd  * record buf, -1 if not.
    692   1.1       cgd  */
    693   1.1       cgd int
    694  1.40  christos cgetmatch(const char *buf, const char *name)
    695   1.1       cgd {
    696  1.21   mycroft 	const char *np, *bp;
    697   1.1       cgd 
    698  1.30     lukem 	_DIAGASSERT(buf != NULL);
    699  1.30     lukem 	_DIAGASSERT(name != NULL);
    700  1.30     lukem 
    701   1.1       cgd 	/*
    702   1.1       cgd 	 * Start search at beginning of record.
    703   1.1       cgd 	 */
    704   1.1       cgd 	bp = buf;
    705   1.1       cgd 	for (;;) {
    706   1.1       cgd 		/*
    707   1.1       cgd 		 * Try to match a record name.
    708   1.1       cgd 		 */
    709   1.1       cgd 		np = name;
    710   1.1       cgd 		for (;;)
    711  1.26  christos 			if (*np == '\0') {
    712   1.1       cgd 				if (*bp == '|' || *bp == ':' || *bp == '\0')
    713  1.47   jnemeth 					return 0;
    714   1.1       cgd 				else
    715   1.1       cgd 					break;
    716  1.47   jnemeth 			} else if (*bp++ != *np++)
    717  1.47   jnemeth 				break;
    718   1.1       cgd 
    719   1.1       cgd 		/*
    720   1.1       cgd 		 * Match failed, skip to next name in record.
    721   1.1       cgd 		 */
    722  1.34       mrg 		if (bp > buf)
    723  1.34       mrg 			bp--;	/* a '|' or ':' may have stopped the match */
    724  1.34       mrg 		else
    725  1.47   jnemeth 			return -1;
    726   1.1       cgd 		for (;;)
    727   1.1       cgd 			if (*bp == '\0' || *bp == ':')
    728  1.47   jnemeth 				return -1;	/* match failed totally */
    729  1.47   jnemeth 			else if (*bp++ == '|')
    730  1.47   jnemeth 				break;		/* found next name */
    731   1.1       cgd 	}
    732   1.1       cgd }
    733   1.1       cgd 
    734   1.1       cgd int
    735  1.40  christos cgetfirst(char **buf, const char * const *db_array)
    736   1.1       cgd {
    737  1.30     lukem 
    738  1.30     lukem 	_DIAGASSERT(buf != NULL);
    739  1.30     lukem 	_DIAGASSERT(db_array != NULL);
    740  1.30     lukem 
    741   1.1       cgd 	(void)cgetclose();
    742  1.47   jnemeth 	return cgetnext(buf, db_array);
    743   1.1       cgd }
    744   1.1       cgd 
    745   1.1       cgd static FILE *pfp;
    746   1.1       cgd static int slash;
    747  1.40  christos static const char * const *dbp;
    748   1.1       cgd 
    749   1.1       cgd int
    750  1.40  christos cgetclose(void)
    751   1.1       cgd {
    752   1.1       cgd 	if (pfp != NULL) {
    753   1.1       cgd 		(void)fclose(pfp);
    754   1.1       cgd 		pfp = NULL;
    755   1.1       cgd 	}
    756   1.1       cgd 	dbp = NULL;
    757   1.1       cgd 	gottoprec = 0;
    758   1.1       cgd 	slash = 0;
    759  1.47   jnemeth 	return 0;
    760   1.1       cgd }
    761   1.1       cgd 
    762   1.1       cgd /*
    763   1.1       cgd  * Cgetnext() gets either the first or next entry in the logical database
    764   1.1       cgd  * specified by db_array.  It returns 0 upon completion of the database, 1
    765   1.1       cgd  * upon returning an entry with more remaining, and -1 if an error occurs.
    766   1.1       cgd  */
    767  1.45  christos /* coverity[+alloc : arg-*0] */
    768   1.1       cgd int
    769  1.40  christos cgetnext(char **bp, const char * const *db_array)
    770   1.1       cgd {
    771  1.43  christos 	size_t len = 0;
    772  1.17     perry 	int status, done;
    773   1.1       cgd 	char *cp, *line, *rp, *np, buf[BSIZE], nbuf[BSIZE];
    774  1.18   thorpej 	size_t dummy;
    775   1.1       cgd 
    776  1.30     lukem 	_DIAGASSERT(bp != NULL);
    777  1.30     lukem 	_DIAGASSERT(db_array != NULL);
    778  1.30     lukem 
    779   1.1       cgd 	if (dbp == NULL)
    780   1.1       cgd 		dbp = db_array;
    781   1.1       cgd 
    782   1.1       cgd 	if (pfp == NULL && (pfp = fopen(*dbp, "r")) == NULL) {
    783   1.1       cgd 		(void)cgetclose();
    784  1.47   jnemeth 		return -1;
    785   1.1       cgd 	}
    786  1.47   jnemeth 	for (;;) {
    787  1.47   jnemeth 		if (toprec != NULL && !gottoprec) {
    788   1.1       cgd 			gottoprec = 1;
    789   1.1       cgd 			line = toprec;
    790   1.1       cgd 		} else {
    791   1.6       cgd 			line = fgetln(pfp, &len);
    792  1.44  christos 			if (line == NULL) {
    793  1.44  christos 				if (pfp == NULL)
    794  1.44  christos 					return -1;
    795   1.1       cgd 				if (ferror(pfp)) {
    796   1.1       cgd 					(void)cgetclose();
    797  1.47   jnemeth 					return -1;
    798   1.1       cgd 				} else {
    799  1.19        tv 					(void)fclose(pfp);
    800  1.19        tv 					pfp = NULL;
    801   1.1       cgd 					if (*++dbp == NULL) {
    802   1.1       cgd 						(void)cgetclose();
    803  1.47   jnemeth 						return 0;
    804   1.1       cgd 					} else if ((pfp =
    805   1.1       cgd 					    fopen(*dbp, "r")) == NULL) {
    806   1.1       cgd 						(void)cgetclose();
    807  1.47   jnemeth 						return -1;
    808   1.1       cgd 					} else
    809   1.1       cgd 						continue;
    810   1.1       cgd 				}
    811   1.5       cgd 			} else
    812   1.5       cgd 				line[len - 1] = '\0';
    813   1.5       cgd 			if (len == 1) {
    814   1.1       cgd 				slash = 0;
    815   1.1       cgd 				continue;
    816   1.1       cgd 			}
    817  1.26  christos 			if (isspace((unsigned char)*line) ||
    818   1.1       cgd 			    *line == ':' || *line == '#' || slash) {
    819   1.5       cgd 				if (line[len - 2] == '\\')
    820   1.1       cgd 					slash = 1;
    821   1.1       cgd 				else
    822   1.1       cgd 					slash = 0;
    823   1.1       cgd 				continue;
    824   1.1       cgd 			}
    825   1.5       cgd 			if (line[len - 2] == '\\')
    826   1.1       cgd 				slash = 1;
    827   1.1       cgd 			else
    828   1.1       cgd 				slash = 0;
    829   1.1       cgd 		}
    830   1.1       cgd 
    831   1.1       cgd 
    832   1.1       cgd 		/*
    833   1.1       cgd 		 * Line points to a name line.
    834   1.1       cgd 		 */
    835  1.35      groo 		if (len > sizeof(nbuf))
    836  1.35      groo 			return -1;
    837   1.1       cgd 		done = 0;
    838   1.1       cgd 		np = nbuf;
    839   1.1       cgd 		for (;;) {
    840   1.1       cgd 			for (cp = line; *cp != '\0'; cp++) {
    841   1.1       cgd 				if (*cp == ':') {
    842   1.1       cgd 					*np++ = ':';
    843   1.1       cgd 					done = 1;
    844   1.1       cgd 					break;
    845   1.1       cgd 				}
    846   1.1       cgd 				if (*cp == '\\')
    847   1.1       cgd 					break;
    848   1.1       cgd 				*np++ = *cp;
    849   1.1       cgd 			}
    850   1.1       cgd 			if (done) {
    851   1.1       cgd 				*np = '\0';
    852   1.1       cgd 				break;
    853   1.1       cgd 			} else { /* name field extends beyond the line */
    854   1.6       cgd 				line = fgetln(pfp, &len);
    855   1.1       cgd 				if (line == NULL && pfp) {
    856   1.1       cgd 					if (ferror(pfp)) {
    857   1.1       cgd 						(void)cgetclose();
    858  1.47   jnemeth 						return -1;
    859   1.1       cgd 					}
    860  1.19        tv 					(void)fclose(pfp);
    861  1.19        tv 					pfp = NULL;
    862  1.19        tv 					*np = '\0';
    863  1.19        tv 					break;
    864   1.5       cgd 				} else
    865   1.5       cgd 					line[len - 1] = '\0';
    866   1.1       cgd 			}
    867   1.1       cgd 		}
    868  1.35      groo 		if (len > sizeof(buf))
    869  1.35      groo 			return -1;
    870   1.1       cgd 		rp = buf;
    871  1.47   jnemeth 		for (cp = nbuf; *cp != '\0'; cp++)
    872   1.1       cgd 			if (*cp == '|' || *cp == ':')
    873   1.1       cgd 				break;
    874   1.1       cgd 			else
    875   1.1       cgd 				*rp++ = *cp;
    876   1.1       cgd 
    877   1.1       cgd 		*rp = '\0';
    878   1.1       cgd 		/*
    879   1.1       cgd 		 * XXX
    880   1.1       cgd 		 * Last argument of getent here should be nbuf if we want true
    881   1.1       cgd 		 * sequential access in the case of duplicates.
    882   1.1       cgd 		 * With NULL, getent will return the first entry found
    883   1.1       cgd 		 * rather than the duplicate entry record.  This is a
    884   1.1       cgd 		 * matter of semantics that should be resolved.
    885   1.1       cgd 		 */
    886   1.1       cgd 		status = getent(bp, &dummy, db_array, -1, buf, 0, NULL);
    887   1.1       cgd 		if (status == -2 || status == -3)
    888   1.1       cgd 			(void)cgetclose();
    889   1.1       cgd 
    890  1.47   jnemeth 		return status + 1;
    891   1.1       cgd 	}
    892   1.1       cgd 	/* NOTREACHED */
    893   1.1       cgd }
    894   1.1       cgd 
    895   1.1       cgd /*
    896   1.1       cgd  * Cgetstr retrieves the value of the string capability cap from the
    897   1.1       cgd  * capability record pointed to by buf.  A pointer to a decoded, NUL
    898   1.1       cgd  * terminated, malloc'd copy of the string is returned in the char *
    899   1.1       cgd  * pointed to by str.  The length of the string not including the trailing
    900   1.1       cgd  * NUL is returned on success, -1 if the requested string capability
    901   1.1       cgd  * couldn't be found, -2 if a system error was encountered (storage
    902   1.1       cgd  * allocation failure).
    903   1.1       cgd  */
    904   1.1       cgd int
    905  1.40  christos cgetstr(char *buf, const char *cap, char **str)
    906   1.1       cgd {
    907  1.16     perry 	u_int m_room;
    908  1.21   mycroft 	const char *bp;
    909  1.21   mycroft 	char *mp;
    910   1.1       cgd 	int len;
    911  1.33    itojun 	char *mem, *newmem;
    912   1.1       cgd 
    913  1.30     lukem 	_DIAGASSERT(buf != NULL);
    914  1.30     lukem 	_DIAGASSERT(cap != NULL);
    915  1.30     lukem 	_DIAGASSERT(str != NULL);
    916  1.30     lukem 
    917   1.1       cgd 	/*
    918   1.1       cgd 	 * Find string capability cap
    919   1.1       cgd 	 */
    920   1.1       cgd 	bp = cgetcap(buf, cap, '=');
    921   1.1       cgd 	if (bp == NULL)
    922  1.47   jnemeth 		return -1;
    923   1.1       cgd 
    924   1.1       cgd 	/*
    925   1.1       cgd 	 * Conversion / storage allocation loop ...  Allocate memory in
    926   1.1       cgd 	 * chunks SFRAG in size.
    927   1.1       cgd 	 */
    928   1.1       cgd 	if ((mem = malloc(SFRAG)) == NULL) {
    929   1.1       cgd 		errno = ENOMEM;
    930  1.47   jnemeth 		return -2;	/* couldn't even allocate the first fragment */
    931   1.1       cgd 	}
    932   1.1       cgd 	m_room = SFRAG;
    933   1.1       cgd 	mp = mem;
    934   1.1       cgd 
    935   1.1       cgd 	while (*bp != ':' && *bp != '\0') {
    936   1.1       cgd 		/*
    937   1.1       cgd 		 * Loop invariants:
    938   1.1       cgd 		 *	There is always room for one more character in mem.
    939   1.1       cgd 		 *	Mp always points just past last character in mem.
    940   1.1       cgd 		 *	Bp always points at next character in buf.
    941   1.1       cgd 		 */
    942   1.1       cgd 		if (*bp == '^') {
    943   1.1       cgd 			bp++;
    944   1.1       cgd 			if (*bp == ':' || *bp == '\0')
    945   1.1       cgd 				break;	/* drop unfinished escape */
    946   1.1       cgd 			*mp++ = *bp++ & 037;
    947   1.1       cgd 		} else if (*bp == '\\') {
    948   1.1       cgd 			bp++;
    949   1.1       cgd 			if (*bp == ':' || *bp == '\0')
    950   1.1       cgd 				break;	/* drop unfinished escape */
    951   1.1       cgd 			if ('0' <= *bp && *bp <= '7') {
    952  1.16     perry 				int n, i;
    953   1.1       cgd 
    954   1.1       cgd 				n = 0;
    955   1.1       cgd 				i = 3;	/* maximum of three octal digits */
    956   1.1       cgd 				do {
    957   1.1       cgd 					n = n * 8 + (*bp++ - '0');
    958   1.1       cgd 				} while (--i && '0' <= *bp && *bp <= '7');
    959   1.1       cgd 				*mp++ = n;
    960   1.1       cgd 			}
    961   1.1       cgd 			else switch (*bp++) {
    962   1.1       cgd 				case 'b': case 'B':
    963   1.1       cgd 					*mp++ = '\b';
    964   1.1       cgd 					break;
    965   1.1       cgd 				case 't': case 'T':
    966   1.1       cgd 					*mp++ = '\t';
    967   1.1       cgd 					break;
    968   1.1       cgd 				case 'n': case 'N':
    969   1.1       cgd 					*mp++ = '\n';
    970   1.1       cgd 					break;
    971   1.1       cgd 				case 'f': case 'F':
    972   1.1       cgd 					*mp++ = '\f';
    973   1.1       cgd 					break;
    974   1.1       cgd 				case 'r': case 'R':
    975   1.1       cgd 					*mp++ = '\r';
    976   1.1       cgd 					break;
    977   1.1       cgd 				case 'e': case 'E':
    978   1.1       cgd 					*mp++ = ESC;
    979   1.1       cgd 					break;
    980   1.1       cgd 				case 'c': case 'C':
    981   1.1       cgd 					*mp++ = ':';
    982   1.1       cgd 					break;
    983   1.1       cgd 				default:
    984   1.1       cgd 					/*
    985   1.1       cgd 					 * Catches '\', '^', and
    986   1.1       cgd 					 *  everything else.
    987   1.1       cgd 					 */
    988   1.1       cgd 					*mp++ = *(bp-1);
    989   1.1       cgd 					break;
    990   1.1       cgd 			}
    991   1.1       cgd 		} else
    992   1.1       cgd 			*mp++ = *bp++;
    993   1.1       cgd 		m_room--;
    994   1.1       cgd 
    995   1.1       cgd 		/*
    996   1.1       cgd 		 * Enforce loop invariant: if no room left in current
    997   1.1       cgd 		 * buffer, try to get some more.
    998   1.1       cgd 		 */
    999   1.1       cgd 		if (m_room == 0) {
   1000   1.1       cgd 			size_t size = mp - mem;
   1001   1.1       cgd 
   1002  1.33    itojun 			if ((newmem = realloc(mem, size + SFRAG)) == NULL) {
   1003  1.33    itojun 				free(mem);
   1004  1.47   jnemeth 				return -2;
   1005  1.33    itojun 			}
   1006  1.33    itojun 			mem = newmem;
   1007   1.1       cgd 			m_room = SFRAG;
   1008   1.1       cgd 			mp = mem + size;
   1009   1.1       cgd 		}
   1010   1.1       cgd 	}
   1011   1.1       cgd 	*mp++ = '\0';	/* loop invariant let's us do this */
   1012   1.1       cgd 	m_room--;
   1013   1.1       cgd 	len = mp - mem - 1;
   1014   1.1       cgd 
   1015   1.1       cgd 	/*
   1016   1.1       cgd 	 * Give back any extra memory and return value and success.
   1017   1.1       cgd 	 */
   1018  1.33    itojun 	if (m_room != 0) {
   1019  1.33    itojun 		if ((newmem = realloc(mem, (size_t)(mp - mem))) == NULL) {
   1020  1.33    itojun 			free(mem);
   1021  1.47   jnemeth 			return -2;
   1022  1.33    itojun 		}
   1023  1.33    itojun 		mem = newmem;
   1024  1.33    itojun 	}
   1025   1.1       cgd 	*str = mem;
   1026  1.47   jnemeth 	return len;
   1027   1.1       cgd }
   1028   1.1       cgd 
   1029   1.1       cgd /*
   1030   1.1       cgd  * Cgetustr retrieves the value of the string capability cap from the
   1031   1.1       cgd  * capability record pointed to by buf.  The difference between cgetustr()
   1032   1.1       cgd  * and cgetstr() is that cgetustr does not decode escapes but rather treats
   1033   1.1       cgd  * all characters literally.  A pointer to a  NUL terminated malloc'd
   1034   1.1       cgd  * copy of the string is returned in the char pointed to by str.  The
   1035   1.1       cgd  * length of the string not including the trailing NUL is returned on success,
   1036   1.1       cgd  * -1 if the requested string capability couldn't be found, -2 if a system
   1037   1.1       cgd  * error was encountered (storage allocation failure).
   1038   1.1       cgd  */
   1039   1.1       cgd int
   1040  1.40  christos cgetustr(char *buf, const char *cap, char **str)
   1041   1.1       cgd {
   1042  1.16     perry 	u_int m_room;
   1043  1.21   mycroft 	const char *bp;
   1044  1.21   mycroft 	char *mp;
   1045   1.1       cgd 	int len;
   1046  1.33    itojun 	char *mem, *newmem;
   1047   1.1       cgd 
   1048  1.30     lukem 	_DIAGASSERT(buf != NULL);
   1049  1.30     lukem 	_DIAGASSERT(cap != NULL);
   1050  1.30     lukem 	_DIAGASSERT(str != NULL);
   1051  1.30     lukem 
   1052   1.1       cgd 	/*
   1053   1.1       cgd 	 * Find string capability cap
   1054   1.1       cgd 	 */
   1055   1.1       cgd 	if ((bp = cgetcap(buf, cap, '=')) == NULL)
   1056  1.47   jnemeth 		return -1;
   1057   1.1       cgd 
   1058   1.1       cgd 	/*
   1059   1.1       cgd 	 * Conversion / storage allocation loop ...  Allocate memory in
   1060   1.1       cgd 	 * chunks SFRAG in size.
   1061   1.1       cgd 	 */
   1062   1.1       cgd 	if ((mem = malloc(SFRAG)) == NULL) {
   1063   1.1       cgd 		errno = ENOMEM;
   1064  1.47   jnemeth 		return -2;	/* couldn't even allocate the first fragment */
   1065   1.1       cgd 	}
   1066   1.1       cgd 	m_room = SFRAG;
   1067   1.1       cgd 	mp = mem;
   1068   1.1       cgd 
   1069   1.1       cgd 	while (*bp != ':' && *bp != '\0') {
   1070   1.1       cgd 		/*
   1071   1.1       cgd 		 * Loop invariants:
   1072   1.1       cgd 		 *	There is always room for one more character in mem.
   1073   1.1       cgd 		 *	Mp always points just past last character in mem.
   1074   1.1       cgd 		 *	Bp always points at next character in buf.
   1075   1.1       cgd 		 */
   1076   1.1       cgd 		*mp++ = *bp++;
   1077   1.1       cgd 		m_room--;
   1078   1.1       cgd 
   1079   1.1       cgd 		/*
   1080   1.1       cgd 		 * Enforce loop invariant: if no room left in current
   1081   1.1       cgd 		 * buffer, try to get some more.
   1082   1.1       cgd 		 */
   1083   1.1       cgd 		if (m_room == 0) {
   1084   1.1       cgd 			size_t size = mp - mem;
   1085   1.1       cgd 
   1086  1.33    itojun 			if ((newmem = realloc(mem, size + SFRAG)) == NULL) {
   1087  1.33    itojun 				free(mem);
   1088  1.47   jnemeth 				return -2;
   1089  1.33    itojun 			}
   1090  1.33    itojun 			mem = newmem;
   1091   1.1       cgd 			m_room = SFRAG;
   1092   1.1       cgd 			mp = mem + size;
   1093   1.1       cgd 		}
   1094   1.1       cgd 	}
   1095   1.1       cgd 	*mp++ = '\0';	/* loop invariant let's us do this */
   1096   1.1       cgd 	m_room--;
   1097   1.1       cgd 	len = mp - mem - 1;
   1098   1.1       cgd 
   1099   1.1       cgd 	/*
   1100   1.1       cgd 	 * Give back any extra memory and return value and success.
   1101   1.1       cgd 	 */
   1102  1.33    itojun 	if (m_room != 0) {
   1103  1.33    itojun 		if ((newmem = realloc(mem, (size_t)(mp - mem))) == NULL) {
   1104  1.33    itojun 			free(mem);
   1105  1.47   jnemeth 			return -2;
   1106  1.33    itojun 		}
   1107  1.33    itojun 		mem = newmem;
   1108  1.33    itojun 	}
   1109   1.1       cgd 	*str = mem;
   1110  1.47   jnemeth 	return len;
   1111   1.1       cgd }
   1112   1.1       cgd 
   1113   1.1       cgd /*
   1114   1.1       cgd  * Cgetnum retrieves the value of the numeric capability cap from the
   1115   1.1       cgd  * capability record pointed to by buf.  The numeric value is returned in
   1116   1.1       cgd  * the long pointed to by num.  0 is returned on success, -1 if the requested
   1117   1.1       cgd  * numeric capability couldn't be found.
   1118   1.1       cgd  */
   1119   1.1       cgd int
   1120  1.40  christos cgetnum(char *buf, const char *cap, long *num)
   1121   1.1       cgd {
   1122  1.16     perry 	long n;
   1123  1.16     perry 	int base, digit;
   1124  1.21   mycroft 	const char *bp;
   1125   1.1       cgd 
   1126  1.30     lukem 	_DIAGASSERT(buf != NULL);
   1127  1.30     lukem 	_DIAGASSERT(cap != NULL);
   1128  1.30     lukem 	_DIAGASSERT(num != NULL);
   1129  1.30     lukem 
   1130   1.1       cgd 	/*
   1131   1.1       cgd 	 * Find numeric capability cap
   1132   1.1       cgd 	 */
   1133   1.1       cgd 	bp = cgetcap(buf, cap, '#');
   1134   1.1       cgd 	if (bp == NULL)
   1135  1.47   jnemeth 		return -1;
   1136   1.1       cgd 
   1137   1.1       cgd 	/*
   1138   1.1       cgd 	 * Look at value and determine numeric base:
   1139   1.1       cgd 	 *	0x... or 0X...	hexadecimal,
   1140   1.1       cgd 	 * else	0...		octal,
   1141   1.1       cgd 	 * else			decimal.
   1142   1.1       cgd 	 */
   1143   1.1       cgd 	if (*bp == '0') {
   1144   1.1       cgd 		bp++;
   1145   1.1       cgd 		if (*bp == 'x' || *bp == 'X') {
   1146   1.1       cgd 			bp++;
   1147   1.1       cgd 			base = 16;
   1148   1.1       cgd 		} else
   1149   1.1       cgd 			base = 8;
   1150   1.1       cgd 	} else
   1151   1.1       cgd 		base = 10;
   1152   1.1       cgd 
   1153   1.1       cgd 	/*
   1154   1.1       cgd 	 * Conversion loop ...
   1155   1.1       cgd 	 */
   1156   1.1       cgd 	n = 0;
   1157   1.1       cgd 	for (;;) {
   1158   1.1       cgd 		if ('0' <= *bp && *bp <= '9')
   1159   1.1       cgd 			digit = *bp - '0';
   1160   1.1       cgd 		else if ('a' <= *bp && *bp <= 'f')
   1161   1.1       cgd 			digit = 10 + *bp - 'a';
   1162   1.1       cgd 		else if ('A' <= *bp && *bp <= 'F')
   1163   1.1       cgd 			digit = 10 + *bp - 'A';
   1164   1.1       cgd 		else
   1165   1.1       cgd 			break;
   1166   1.1       cgd 
   1167   1.1       cgd 		if (digit >= base)
   1168   1.1       cgd 			break;
   1169   1.1       cgd 
   1170   1.1       cgd 		n = n * base + digit;
   1171   1.1       cgd 		bp++;
   1172   1.1       cgd 	}
   1173   1.1       cgd 
   1174   1.1       cgd 	/*
   1175   1.1       cgd 	 * Return value and success.
   1176   1.1       cgd 	 */
   1177   1.1       cgd 	*num = n;
   1178  1.47   jnemeth 	return 0;
   1179   1.1       cgd }
   1180   1.1       cgd 
   1181   1.1       cgd 
   1182   1.1       cgd /*
   1183   1.1       cgd  * Compare name field of record.
   1184   1.1       cgd  */
   1185   1.1       cgd static int
   1186  1.40  christos nfcmp(char *nf, char *rec)
   1187   1.1       cgd {
   1188   1.1       cgd 	char *cp, tmp;
   1189   1.1       cgd 	int ret;
   1190  1.30     lukem 
   1191  1.30     lukem 	_DIAGASSERT(nf != NULL);
   1192  1.30     lukem 	_DIAGASSERT(rec != NULL);
   1193  1.30     lukem 
   1194   1.1       cgd 	for (cp = rec; *cp != ':'; cp++)
   1195  1.47   jnemeth 		continue;
   1196   1.1       cgd 
   1197   1.1       cgd 	tmp = *(cp + 1);
   1198   1.1       cgd 	*(cp + 1) = '\0';
   1199   1.1       cgd 	ret = strcmp(nf, rec);
   1200   1.1       cgd 	*(cp + 1) = tmp;
   1201   1.1       cgd 
   1202  1.47   jnemeth 	return ret;
   1203   1.1       cgd }
   1204