xref: /csrg-svn/usr.sbin/sendmail/src/util.c (revision 51781)
122717Sdist /*
242833Sbostic  * Copyright (c) 1983 Eric P. Allman
333731Sbostic  * Copyright (c) 1988 Regents of the University of California.
433731Sbostic  * All rights reserved.
533731Sbostic  *
642833Sbostic  * %sccs.include.redist.c%
733731Sbostic  */
822717Sdist 
922717Sdist #ifndef lint
10*51781Seric static char sccsid[] = "@(#)util.c	5.21 (Berkeley) 11/20/91";
1133731Sbostic #endif /* not lint */
1222717Sdist 
133151Seric # include <stdio.h>
144538Seric # include <sys/types.h>
154538Seric # include <sys/stat.h>
16298Seric # include <sysexits.h>
176890Seric # include <errno.h>
186890Seric # include "sendmail.h"
19298Seric 
20298Seric /*
21298Seric **  STRIPQUOTES -- Strip quotes & quote bits from a string.
22298Seric **
23298Seric **	Runs through a string and strips off unquoted quote
24298Seric **	characters and quote bits.  This is done in place.
25298Seric **
26298Seric **	Parameters:
27298Seric **		s -- the string to strip.
284101Seric **		qf -- if set, remove actual `` " '' characters
294101Seric **			as well as the quote bits.
30298Seric **
31298Seric **	Returns:
32298Seric **		none.
33298Seric **
34298Seric **	Side Effects:
35298Seric **		none.
36298Seric **
37298Seric **	Called By:
38298Seric **		deliver
39298Seric */
40298Seric 
414101Seric stripquotes(s, qf)
42298Seric 	char *s;
434101Seric 	bool qf;
44298Seric {
45298Seric 	register char *p;
46298Seric 	register char *q;
47298Seric 	register char c;
48298Seric 
494101Seric 	if (s == NULL)
504101Seric 		return;
514101Seric 
52298Seric 	for (p = q = s; (c = *p++) != '\0'; )
53298Seric 	{
544101Seric 		if (c != '"' || !qf)
55298Seric 			*q++ = c & 0177;
56298Seric 	}
57298Seric 	*q = '\0';
58298Seric }
59298Seric /*
609043Seric **  QSTRLEN -- give me the string length assuming 0200 bits add a char
619043Seric **
629043Seric **	Parameters:
639043Seric **		s -- the string to measure.
649043Seric **
659043Seric **	Reurns:
669043Seric **		The length of s, including space for backslash escapes.
679043Seric **
689043Seric **	Side Effects:
699043Seric **		none.
709043Seric */
719043Seric 
729043Seric qstrlen(s)
739043Seric 	register char *s;
749043Seric {
759043Seric 	register int l = 0;
769043Seric 	register char c;
779043Seric 
789043Seric 	while ((c = *s++) != '\0')
799043Seric 	{
809043Seric 		if (bitset(0200, c))
819043Seric 			l++;
829043Seric 		l++;
839043Seric 	}
849043Seric 	return (l);
859043Seric }
869043Seric /*
872900Seric **  CAPITALIZE -- return a copy of a string, properly capitalized.
882900Seric **
892900Seric **	Parameters:
902900Seric **		s -- the string to capitalize.
912900Seric **
922900Seric **	Returns:
932900Seric **		a pointer to a properly capitalized string.
942900Seric **
952900Seric **	Side Effects:
962900Seric **		none.
972900Seric */
982900Seric 
992900Seric char *
1002900Seric capitalize(s)
1012900Seric 	register char *s;
1022900Seric {
1032900Seric 	static char buf[50];
1042900Seric 	register char *p;
1052900Seric 
1062900Seric 	p = buf;
1072900Seric 
1082900Seric 	for (;;)
1092900Seric 	{
1102900Seric 		while (!isalpha(*s) && *s != '\0')
1112900Seric 			*p++ = *s++;
1122900Seric 		if (*s == '\0')
1132900Seric 			break;
11440999Sbostic 		*p++ = toupper(*s);
11540999Sbostic 		s++;
1162900Seric 		while (isalpha(*s))
1172900Seric 			*p++ = *s++;
1182900Seric 	}
1192900Seric 
1202900Seric 	*p = '\0';
1212900Seric 	return (buf);
1222900Seric }
1232900Seric /*
124298Seric **  XALLOC -- Allocate memory and bitch wildly on failure.
125298Seric **
126298Seric **	THIS IS A CLUDGE.  This should be made to give a proper
127298Seric **	error -- but after all, what can we do?
128298Seric **
129298Seric **	Parameters:
130298Seric **		sz -- size of area to allocate.
131298Seric **
132298Seric **	Returns:
133298Seric **		pointer to data region.
134298Seric **
135298Seric **	Side Effects:
136298Seric **		Memory is allocated.
137298Seric */
138298Seric 
139298Seric char *
140298Seric xalloc(sz)
1417007Seric 	register int sz;
142298Seric {
143298Seric 	register char *p;
14423121Seric 	extern char *malloc();
145298Seric 
14623121Seric 	p = malloc((unsigned) sz);
147298Seric 	if (p == NULL)
148298Seric 	{
149298Seric 		syserr("Out of memory!!");
15010685Seric 		abort();
15110685Seric 		/* exit(EX_UNAVAILABLE); */
152298Seric 	}
153298Seric 	return (p);
154298Seric }
155298Seric /*
1563151Seric **  COPYPLIST -- copy list of pointers.
1573151Seric **
1583151Seric **	This routine is the equivalent of newstr for lists of
1593151Seric **	pointers.
1603151Seric **
1613151Seric **	Parameters:
1623151Seric **		list -- list of pointers to copy.
1633151Seric **			Must be NULL terminated.
1643151Seric **		copycont -- if TRUE, copy the contents of the vector
1653151Seric **			(which must be a string) also.
1663151Seric **
1673151Seric **	Returns:
1683151Seric **		a copy of 'list'.
1693151Seric **
1703151Seric **	Side Effects:
1713151Seric **		none.
1723151Seric */
1733151Seric 
1743151Seric char **
1753151Seric copyplist(list, copycont)
1763151Seric 	char **list;
1773151Seric 	bool copycont;
1783151Seric {
1793151Seric 	register char **vp;
1803151Seric 	register char **newvp;
1813151Seric 
1823151Seric 	for (vp = list; *vp != NULL; vp++)
1833151Seric 		continue;
1843151Seric 
1853151Seric 	vp++;
1863151Seric 
18716897Seric 	newvp = (char **) xalloc((int) (vp - list) * sizeof *vp);
18816897Seric 	bcopy((char *) list, (char *) newvp, (int) (vp - list) * sizeof *vp);
1893151Seric 
1903151Seric 	if (copycont)
1913151Seric 	{
1923151Seric 		for (vp = newvp; *vp != NULL; vp++)
1933151Seric 			*vp = newstr(*vp);
1943151Seric 	}
1953151Seric 
1963151Seric 	return (newvp);
1973151Seric }
1983151Seric /*
1993151Seric **  PRINTAV -- print argument vector.
2003151Seric **
2013151Seric **	Parameters:
2023151Seric **		av -- argument vector.
2033151Seric **
2043151Seric **	Returns:
2053151Seric **		none.
2063151Seric **
2073151Seric **	Side Effects:
2083151Seric **		prints av.
2093151Seric */
2103151Seric 
2113151Seric printav(av)
2123151Seric 	register char **av;
2133151Seric {
2143151Seric 	while (*av != NULL)
2153151Seric 	{
2168063Seric 		if (tTd(0, 44))
2178063Seric 			printf("\n\t%08x=", *av);
2188063Seric 		else
21923105Seric 			(void) putchar(' ');
2203151Seric 		xputs(*av++);
2213151Seric 	}
22223105Seric 	(void) putchar('\n');
2233151Seric }
2243151Seric /*
2253151Seric **  LOWER -- turn letter into lower case.
2263151Seric **
2273151Seric **	Parameters:
2283151Seric **		c -- character to turn into lower case.
2293151Seric **
2303151Seric **	Returns:
2313151Seric **		c, in lower case.
2323151Seric **
2333151Seric **	Side Effects:
2343151Seric **		none.
2353151Seric */
2363151Seric 
2373151Seric char
2383151Seric lower(c)
2393151Seric 	register char c;
2403151Seric {
24133724Sbostic 	return(isascii(c) && isupper(c) ? tolower(c) : c);
2423151Seric }
2433151Seric /*
2443151Seric **  XPUTS -- put string doing control escapes.
2453151Seric **
2463151Seric **	Parameters:
2473151Seric **		s -- string to put.
2483151Seric **
2493151Seric **	Returns:
2503151Seric **		none.
2513151Seric **
2523151Seric **	Side Effects:
2533151Seric **		output to stdout
2543151Seric */
2553151Seric 
2563151Seric xputs(s)
2573151Seric 	register char *s;
2583151Seric {
2593151Seric 	register char c;
260*51781Seric 	register struct metamac *mp;
261*51781Seric 	extern struct metamac MetaMacros[];
2623151Seric 
2638055Seric 	if (s == NULL)
2648055Seric 	{
2658055Seric 		printf("<null>");
2668055Seric 		return;
2678055Seric 	}
268*51781Seric 	c = *s;
269*51781Seric 	if (c == MATCHREPL && isdigit(s[1]) && s[2] == '\0')
270*51781Seric 	{
271*51781Seric 		printf("$%c", s[1]);
272*51781Seric 		return;
273*51781Seric 	}
274*51781Seric 	for (mp = MetaMacros; mp->metaname != NULL; mp++)
275*51781Seric 	{
276*51781Seric 		if (mp->metaval == c)
277*51781Seric 		{
278*51781Seric 			printf("$%c%s", mp->metaname, ++s);
279*51781Seric 			return;
280*51781Seric 		}
281*51781Seric 	}
28223105Seric 	(void) putchar('"');
2833151Seric 	while ((c = *s++) != '\0')
2843151Seric 	{
2853151Seric 		if (!isascii(c))
2863151Seric 		{
28723105Seric 			(void) putchar('\\');
2883151Seric 			c &= 0177;
2893151Seric 		}
29010326Seric 		if (c < 040 || c >= 0177)
2913151Seric 		{
29223105Seric 			(void) putchar('^');
29310326Seric 			c ^= 0100;
2943151Seric 		}
29523105Seric 		(void) putchar(c);
2963151Seric 	}
29723105Seric 	(void) putchar('"');
2984086Seric 	(void) fflush(stdout);
2993151Seric }
3003151Seric /*
3013151Seric **  MAKELOWER -- Translate a line into lower case
3023151Seric **
3033151Seric **	Parameters:
3043151Seric **		p -- the string to translate.  If NULL, return is
3053151Seric **			immediate.
3063151Seric **
3073151Seric **	Returns:
3083151Seric **		none.
3093151Seric **
3103151Seric **	Side Effects:
3113151Seric **		String pointed to by p is translated to lower case.
3123151Seric **
3133151Seric **	Called By:
3143151Seric **		parse
3153151Seric */
3163151Seric 
3173151Seric makelower(p)
3183151Seric 	register char *p;
3193151Seric {
3203151Seric 	register char c;
3213151Seric 
3223151Seric 	if (p == NULL)
3233151Seric 		return;
3243151Seric 	for (; (c = *p) != '\0'; p++)
3253151Seric 		if (isascii(c) && isupper(c))
32633724Sbostic 			*p = tolower(c);
3273151Seric }
3284059Seric /*
3295196Seric **  BUILDFNAME -- build full name from gecos style entry.
3304375Seric **
3315196Seric **	This routine interprets the strange entry that would appear
3325196Seric **	in the GECOS field of the password file.
3335196Seric **
3344375Seric **	Parameters:
3355196Seric **		p -- name to build.
3365196Seric **		login -- the login name of this user (for &).
3375196Seric **		buf -- place to put the result.
3384375Seric **
3394375Seric **	Returns:
3404375Seric **		none.
3414375Seric **
3424375Seric **	Side Effects:
3434375Seric **		none.
3444375Seric */
3454375Seric 
3465196Seric buildfname(p, login, buf)
3475196Seric 	register char *p;
3485196Seric 	char *login;
3494375Seric 	char *buf;
3504375Seric {
3514375Seric 	register char *bp = buf;
3524375Seric 
3534438Seric 	if (*p == '*')
3544438Seric 		p++;
3556278Seric 	while (*p != '\0' && *p != ',' && *p != ';' && *p != '%')
3564375Seric 	{
3574375Seric 		if (*p == '&')
3584375Seric 		{
3595196Seric 			(void) strcpy(bp, login);
3604375Seric 			*bp = toupper(*bp);
3614375Seric 			while (*bp != '\0')
3624375Seric 				bp++;
3634375Seric 			p++;
3644375Seric 		}
3654375Seric 		else
3664375Seric 			*bp++ = *p++;
3674375Seric 	}
3684375Seric 	*bp = '\0';
3694375Seric }
3704375Seric /*
3714538Seric **  SAFEFILE -- return true if a file exists and is safe for a user.
3724538Seric **
3734538Seric **	Parameters:
3744538Seric **		fn -- filename to check.
3754538Seric **		uid -- uid to compare against.
3764538Seric **		mode -- mode bits that must match.
3774538Seric **
3784538Seric **	Returns:
3794538Seric **		TRUE if fn exists, is owned by uid, and matches mode.
3804538Seric **		FALSE otherwise.
3814538Seric **
3824538Seric **	Side Effects:
3834538Seric **		none.
3844538Seric */
3854538Seric 
3864538Seric bool
3874538Seric safefile(fn, uid, mode)
3884538Seric 	char *fn;
3894538Seric 	int uid;
3904538Seric 	int mode;
3914538Seric {
3924538Seric 	struct stat stbuf;
3934538Seric 
3944538Seric 	if (stat(fn, &stbuf) >= 0 && stbuf.st_uid == uid &&
3954538Seric 	    (stbuf.st_mode & mode) == mode)
3964538Seric 		return (TRUE);
39711936Seric 	errno = 0;
3984538Seric 	return (FALSE);
3994538Seric }
4004538Seric /*
4014557Seric **  FIXCRLF -- fix <CR><LF> in line.
4024557Seric **
4034557Seric **	Looks for the <CR><LF> combination and turns it into the
4044557Seric **	UNIX canonical <NL> character.  It only takes one line,
4054557Seric **	i.e., it is assumed that the first <NL> found is the end
4064557Seric **	of the line.
4074557Seric **
4084557Seric **	Parameters:
4094557Seric **		line -- the line to fix.
4104557Seric **		stripnl -- if true, strip the newline also.
4114557Seric **
4124557Seric **	Returns:
4134557Seric **		none.
4144557Seric **
4154557Seric **	Side Effects:
4164557Seric **		line is changed in place.
4174557Seric */
4184557Seric 
4194557Seric fixcrlf(line, stripnl)
4204557Seric 	char *line;
4214557Seric 	bool stripnl;
4224557Seric {
4234557Seric 	register char *p;
4244557Seric 
4254557Seric 	p = index(line, '\n');
4264557Seric 	if (p == NULL)
4274557Seric 		return;
42836291Sbostic 	if (p > line && p[-1] == '\r')
4294557Seric 		p--;
4304557Seric 	if (!stripnl)
4314557Seric 		*p++ = '\n';
4324557Seric 	*p = '\0';
4334557Seric }
4344557Seric /*
4356890Seric **  DFOPEN -- determined file open
4366890Seric **
4376890Seric **	This routine has the semantics of fopen, except that it will
4386890Seric **	keep trying a few times to make this happen.  The idea is that
4396890Seric **	on very loaded systems, we may run out of resources (inodes,
4406890Seric **	whatever), so this tries to get around it.
4416890Seric */
4426890Seric 
4436890Seric FILE *
4446890Seric dfopen(filename, mode)
4456890Seric 	char *filename;
4466890Seric 	char *mode;
4476890Seric {
4486890Seric 	register int tries;
4496890Seric 	register FILE *fp;
4506890Seric 
4516890Seric 	for (tries = 0; tries < 10; tries++)
4526890Seric 	{
45325618Seric 		sleep((unsigned) (10 * tries));
4546890Seric 		errno = 0;
4556890Seric 		fp = fopen(filename, mode);
4569376Seric 		if (fp != NULL)
4576890Seric 			break;
4589376Seric 		if (errno != ENFILE && errno != EINTR)
4599376Seric 			break;
4606890Seric 	}
46111936Seric 	errno = 0;
4626890Seric 	return (fp);
4636890Seric }
4647124Seric /*
4657124Seric **  PUTLINE -- put a line like fputs obeying SMTP conventions
4667124Seric **
4677753Seric **	This routine always guarantees outputing a newline (or CRLF,
4687753Seric **	as appropriate) at the end of the string.
4697753Seric **
4707124Seric **	Parameters:
4717124Seric **		l -- line to put.
4727124Seric **		fp -- file to put it onto.
47310172Seric **		m -- the mailer used to control output.
4747124Seric **
4757124Seric **	Returns:
4767124Seric **		none
4777124Seric **
4787124Seric **	Side Effects:
4797124Seric **		output of l to fp.
4807124Seric */
4817124Seric 
4827753Seric # define SMTPLINELIM	990	/* maximum line length */
4837124Seric 
48410172Seric putline(l, fp, m)
4857753Seric 	register char *l;
4867124Seric 	FILE *fp;
48710172Seric 	MAILER *m;
4887124Seric {
4897124Seric 	register char *p;
49047157Sbostic 	register char svchar;
4917124Seric 
49211275Seric 	/* strip out 0200 bits -- these can look like TELNET protocol */
49311275Seric 	if (bitnset(M_LIMITS, m->m_flags))
49411275Seric 	{
49547157Sbostic 		for (p = l; svchar = *p; ++p)
49647157Sbostic 			if (svchar & 0200)
49747157Sbostic 				*p = svchar &~ 0200;
49811275Seric 	}
49911275Seric 
5007753Seric 	do
5017124Seric 	{
5027753Seric 		/* find the end of the line */
5037753Seric 		p = index(l, '\n');
5047753Seric 		if (p == NULL)
5057753Seric 			p = &l[strlen(l)];
5067124Seric 
5077753Seric 		/* check for line overflow */
50811275Seric 		while ((p - l) > SMTPLINELIM && bitnset(M_LIMITS, m->m_flags))
5097753Seric 		{
5107753Seric 			register char *q = &l[SMTPLINELIM - 1];
5117124Seric 
5127753Seric 			svchar = *q;
5137753Seric 			*q = '\0';
51410685Seric 			if (l[0] == '.' && bitnset(M_XDOT, m->m_flags))
51523105Seric 				(void) putc('.', fp);
5167753Seric 			fputs(l, fp);
51723105Seric 			(void) putc('!', fp);
51810326Seric 			fputs(m->m_eol, fp);
5197753Seric 			*q = svchar;
5207753Seric 			l = q;
5217753Seric 		}
5227124Seric 
5237753Seric 		/* output last part */
52410685Seric 		if (l[0] == '.' && bitnset(M_XDOT, m->m_flags))
52523105Seric 			(void) putc('.', fp);
52647157Sbostic 		for ( ; l < p; ++l)
52747157Sbostic 			(void) putc(*l, fp);
52810326Seric 		fputs(m->m_eol, fp);
5297753Seric 		if (*l == '\n')
53047157Sbostic 			++l;
5317753Seric 	} while (l[0] != '\0');
5327124Seric }
5337676Seric /*
5347676Seric **  XUNLINK -- unlink a file, doing logging as appropriate.
5357676Seric **
5367676Seric **	Parameters:
5377676Seric **		f -- name of file to unlink.
5387676Seric **
5397676Seric **	Returns:
5407676Seric **		none.
5417676Seric **
5427676Seric **	Side Effects:
5437676Seric **		f is unlinked.
5447676Seric */
5457676Seric 
5467676Seric xunlink(f)
5477676Seric 	char *f;
5487676Seric {
5497676Seric 	register int i;
5507676Seric 
5517676Seric # ifdef LOG
5527676Seric 	if (LogLevel > 20)
5537812Seric 		syslog(LOG_DEBUG, "%s: unlink %s\n", CurEnv->e_id, f);
5547676Seric # endif LOG
5557676Seric 
5567676Seric 	i = unlink(f);
5577676Seric # ifdef LOG
5587676Seric 	if (i < 0 && LogLevel > 21)
5597942Seric 		syslog(LOG_DEBUG, "%s: unlink-fail %d", f, errno);
5607676Seric # endif LOG
5617676Seric }
5627685Seric /*
56314885Seric **  SFGETS -- "safe" fgets -- times out and ignores random interrupts.
5647685Seric **
5657685Seric **	Parameters:
5667685Seric **		buf -- place to put the input line.
5677685Seric **		siz -- size of buf.
5687685Seric **		fp -- file to read from.
5697685Seric **
5707685Seric **	Returns:
57115533Seric **		NULL on error (including timeout).  This will also leave
57215533Seric **			buf containing a null string.
5737685Seric **		buf otherwise.
5747685Seric **
5757685Seric **	Side Effects:
5767685Seric **		none.
5777685Seric */
5787685Seric 
57914885Seric static jmp_buf	CtxReadTimeout;
5807685Seric 
5817685Seric char *
5827685Seric sfgets(buf, siz, fp)
5837685Seric 	char *buf;
5847685Seric 	int siz;
5857685Seric 	FILE *fp;
5867685Seric {
5877942Seric 	register EVENT *ev = NULL;
5887685Seric 	register char *p;
58946928Sbostic 	static int readtimeout();
5907685Seric 
59114885Seric 	/* set the timeout */
5927942Seric 	if (ReadTimeout != 0)
59314885Seric 	{
59414885Seric 		if (setjmp(CtxReadTimeout) != 0)
59514885Seric 		{
59636233Skarels # ifdef LOG
59736230Skarels 			syslog(LOG_NOTICE,
59836230Skarels 			    "timeout waiting for input from %s\n",
59940998Sbostic 			    RealHostName? RealHostName: "local");
60036233Skarels # endif
60136230Skarels 			errno = 0;
60240964Sbostic 			usrerr("451 timeout waiting for input");
60319037Seric 			buf[0] = '\0';
60414885Seric 			return (NULL);
60514885Seric 		}
60616138Seric 		ev = setevent((time_t) ReadTimeout, readtimeout, 0);
60714885Seric 	}
60814885Seric 
60914885Seric 	/* try to read */
61015533Seric 	p = NULL;
61115533Seric 	while (p == NULL && !feof(fp) && !ferror(fp))
6127942Seric 	{
6137942Seric 		errno = 0;
6147942Seric 		p = fgets(buf, siz, fp);
61515533Seric 		if (errno == EINTR)
61615533Seric 			clearerr(fp);
61715533Seric 	}
61814885Seric 
61914885Seric 	/* clear the event if it has not sprung */
6207685Seric 	clrevent(ev);
62114885Seric 
62214885Seric 	/* clean up the books and exit */
6238055Seric 	LineNumber++;
62415533Seric 	if (p == NULL)
62516880Seric 	{
62615533Seric 		buf[0] = '\0';
62716880Seric 		return (NULL);
62816880Seric 	}
62916880Seric 	for (p = buf; *p != '\0'; p++)
63016880Seric 		*p &= ~0200;
63116880Seric 	return (buf);
6327685Seric }
6337685Seric 
6347685Seric static
6357685Seric readtimeout()
6367685Seric {
63714885Seric 	longjmp(CtxReadTimeout, 1);
6387685Seric }
6397786Seric /*
6407786Seric **  FGETFOLDED -- like fgets, but know about folded lines.
6417786Seric **
6427786Seric **	Parameters:
6437786Seric **		buf -- place to put result.
6447786Seric **		n -- bytes available.
6457786Seric **		f -- file to read from.
6467786Seric **
6477786Seric **	Returns:
6487786Seric **		buf on success, NULL on error or EOF.
6497786Seric **
6507786Seric **	Side Effects:
6517786Seric **		buf gets lines from f, with continuation lines (lines
6527786Seric **		with leading white space) appended.  CRLF's are mapped
6537786Seric **		into single newlines.  Any trailing NL is stripped.
6547786Seric */
6557786Seric 
6567786Seric char *
6577786Seric fgetfolded(buf, n, f)
6587786Seric 	char *buf;
6597786Seric 	register int n;
6607786Seric 	FILE *f;
6617786Seric {
6627786Seric 	register char *p = buf;
6637786Seric 	register int i;
6647786Seric 
6657786Seric 	n--;
66617350Seric 	while ((i = getc(f)) != EOF)
6677786Seric 	{
66817350Seric 		if (i == '\r')
66917350Seric 		{
67017350Seric 			i = getc(f);
67117350Seric 			if (i != '\n')
67217350Seric 			{
67317350Seric 				if (i != EOF)
67423105Seric 					(void) ungetc(i, f);
67517350Seric 				i = '\r';
67617350Seric 			}
67717350Seric 		}
67817350Seric 		if (--n > 0)
67917350Seric 			*p++ = i;
68017350Seric 		if (i == '\n')
68117350Seric 		{
68217350Seric 			LineNumber++;
68317350Seric 			i = getc(f);
68417350Seric 			if (i != EOF)
68523105Seric 				(void) ungetc(i, f);
68617350Seric 			if (i != ' ' && i != '\t')
68717350Seric 			{
68817350Seric 				*--p = '\0';
68917350Seric 				return (buf);
69017350Seric 			}
69117350Seric 		}
6927786Seric 	}
6937786Seric 	return (NULL);
6947786Seric }
6957860Seric /*
6967886Seric **  CURTIME -- return current time.
6977886Seric **
6987886Seric **	Parameters:
6997886Seric **		none.
7007886Seric **
7017886Seric **	Returns:
7027886Seric **		the current time.
7037886Seric **
7047886Seric **	Side Effects:
7057886Seric **		none.
7067886Seric */
7077886Seric 
7087886Seric time_t
7097886Seric curtime()
7107886Seric {
7117886Seric 	auto time_t t;
7127886Seric 
7137886Seric 	(void) time(&t);
7147886Seric 	return (t);
7157886Seric }
7168264Seric /*
7178264Seric **  ATOBOOL -- convert a string representation to boolean.
7188264Seric **
7198264Seric **	Defaults to "TRUE"
7208264Seric **
7218264Seric **	Parameters:
7228264Seric **		s -- string to convert.  Takes "tTyY" as true,
7238264Seric **			others as false.
7248264Seric **
7258264Seric **	Returns:
7268264Seric **		A boolean representation of the string.
7278264Seric **
7288264Seric **	Side Effects:
7298264Seric **		none.
7308264Seric */
7318264Seric 
7328264Seric bool
7338264Seric atobool(s)
7348264Seric 	register char *s;
7358264Seric {
7368264Seric 	if (*s == '\0' || index("tTyY", *s) != NULL)
7378264Seric 		return (TRUE);
7388264Seric 	return (FALSE);
7398264Seric }
7409048Seric /*
7419048Seric **  ATOOCT -- convert a string representation to octal.
7429048Seric **
7439048Seric **	Parameters:
7449048Seric **		s -- string to convert.
7459048Seric **
7469048Seric **	Returns:
7479048Seric **		An integer representing the string interpreted as an
7489048Seric **		octal number.
7499048Seric **
7509048Seric **	Side Effects:
7519048Seric **		none.
7529048Seric */
7539048Seric 
7549048Seric atooct(s)
7559048Seric 	register char *s;
7569048Seric {
7579048Seric 	register int i = 0;
7589048Seric 
7599048Seric 	while (*s >= '0' && *s <= '7')
7609048Seric 		i = (i << 3) | (*s++ - '0');
7619048Seric 	return (i);
7629048Seric }
7639376Seric /*
7649376Seric **  WAITFOR -- wait for a particular process id.
7659376Seric **
7669376Seric **	Parameters:
7679376Seric **		pid -- process id to wait for.
7689376Seric **
7699376Seric **	Returns:
7709376Seric **		status of pid.
7719376Seric **		-1 if pid never shows up.
7729376Seric **
7739376Seric **	Side Effects:
7749376Seric **		none.
7759376Seric */
7769376Seric 
7779376Seric waitfor(pid)
7789376Seric 	int pid;
7799376Seric {
7809376Seric 	auto int st;
7819376Seric 	int i;
7829376Seric 
7839376Seric 	do
7849376Seric 	{
7859376Seric 		errno = 0;
7869376Seric 		i = wait(&st);
7879376Seric 	} while ((i >= 0 || errno == EINTR) && i != pid);
7889376Seric 	if (i < 0)
7899376Seric 		st = -1;
7909376Seric 	return (st);
7919376Seric }
7929376Seric /*
79310685Seric **  BITINTERSECT -- tell if two bitmaps intersect
79410685Seric **
79510685Seric **	Parameters:
79610685Seric **		a, b -- the bitmaps in question
79710685Seric **
79810685Seric **	Returns:
79910685Seric **		TRUE if they have a non-null intersection
80010685Seric **		FALSE otherwise
80110685Seric **
80210685Seric **	Side Effects:
80310685Seric **		none.
80410685Seric */
80510685Seric 
80610685Seric bool
80710685Seric bitintersect(a, b)
80810685Seric 	BITMAP a;
80910685Seric 	BITMAP b;
81010685Seric {
81110685Seric 	int i;
81210685Seric 
81310685Seric 	for (i = BITMAPBYTES / sizeof (int); --i >= 0; )
81410685Seric 		if ((a[i] & b[i]) != 0)
81510685Seric 			return (TRUE);
81610685Seric 	return (FALSE);
81710685Seric }
81810685Seric /*
81910685Seric **  BITZEROP -- tell if a bitmap is all zero
82010685Seric **
82110685Seric **	Parameters:
82210685Seric **		map -- the bit map to check
82310685Seric **
82410685Seric **	Returns:
82510685Seric **		TRUE if map is all zero.
82610685Seric **		FALSE if there are any bits set in map.
82710685Seric **
82810685Seric **	Side Effects:
82910685Seric **		none.
83010685Seric */
83110685Seric 
83210685Seric bool
83310685Seric bitzerop(map)
83410685Seric 	BITMAP map;
83510685Seric {
83610685Seric 	int i;
83710685Seric 
83810685Seric 	for (i = BITMAPBYTES / sizeof (int); --i >= 0; )
83910685Seric 		if (map[i] != 0)
84010685Seric 			return (FALSE);
84110685Seric 	return (TRUE);
84210685Seric }
843