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