xref: /csrg-svn/usr.sbin/sendmail/src/util.c (revision 57589)
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*57589Seric static char sccsid[] = "@(#)util.c	6.3 (Berkeley) 01/18/93";
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"
1957135Seric /*
20298Seric **  STRIPQUOTES -- Strip quotes & quote bits from a string.
21298Seric **
22298Seric **	Runs through a string and strips off unquoted quote
23298Seric **	characters and quote bits.  This is done in place.
24298Seric **
25298Seric **	Parameters:
26298Seric **		s -- the string to strip.
27298Seric **
28298Seric **	Returns:
29298Seric **		none.
30298Seric **
31298Seric **	Side Effects:
32298Seric **		none.
33298Seric **
34298Seric **	Called By:
35298Seric **		deliver
36298Seric */
37298Seric 
3854983Seric stripquotes(s)
39298Seric 	char *s;
40298Seric {
41298Seric 	register char *p;
42298Seric 	register char *q;
43298Seric 	register char c;
44298Seric 
454101Seric 	if (s == NULL)
464101Seric 		return;
474101Seric 
4854983Seric 	p = q = s;
4954983Seric 	do
50298Seric 	{
5154983Seric 		c = *p++;
5254983Seric 		if (c == '\\')
5354983Seric 			c = *p++;
5454983Seric 		else if (c == '"')
5554983Seric 			continue;
5654983Seric 		*q++ = c;
5754983Seric 	} while (c != '\0');
58298Seric }
59298Seric /*
602900Seric **  CAPITALIZE -- return a copy of a string, properly capitalized.
612900Seric **
622900Seric **	Parameters:
632900Seric **		s -- the string to capitalize.
642900Seric **
652900Seric **	Returns:
662900Seric **		a pointer to a properly capitalized string.
672900Seric **
682900Seric **	Side Effects:
692900Seric **		none.
702900Seric */
712900Seric 
722900Seric char *
732900Seric capitalize(s)
742900Seric 	register char *s;
752900Seric {
762900Seric 	static char buf[50];
772900Seric 	register char *p;
782900Seric 
792900Seric 	p = buf;
802900Seric 
812900Seric 	for (;;)
822900Seric 	{
832900Seric 		while (!isalpha(*s) && *s != '\0')
842900Seric 			*p++ = *s++;
852900Seric 		if (*s == '\0')
862900Seric 			break;
8740999Sbostic 		*p++ = toupper(*s);
8840999Sbostic 		s++;
892900Seric 		while (isalpha(*s))
902900Seric 			*p++ = *s++;
912900Seric 	}
922900Seric 
932900Seric 	*p = '\0';
942900Seric 	return (buf);
952900Seric }
962900Seric /*
97298Seric **  XALLOC -- Allocate memory and bitch wildly on failure.
98298Seric **
99298Seric **	THIS IS A CLUDGE.  This should be made to give a proper
100298Seric **	error -- but after all, what can we do?
101298Seric **
102298Seric **	Parameters:
103298Seric **		sz -- size of area to allocate.
104298Seric **
105298Seric **	Returns:
106298Seric **		pointer to data region.
107298Seric **
108298Seric **	Side Effects:
109298Seric **		Memory is allocated.
110298Seric */
111298Seric 
112298Seric char *
113298Seric xalloc(sz)
1147007Seric 	register int sz;
115298Seric {
116298Seric 	register char *p;
117298Seric 
11823121Seric 	p = malloc((unsigned) sz);
119298Seric 	if (p == NULL)
120298Seric 	{
121298Seric 		syserr("Out of memory!!");
12210685Seric 		abort();
12310685Seric 		/* exit(EX_UNAVAILABLE); */
124298Seric 	}
125298Seric 	return (p);
126298Seric }
127298Seric /*
1283151Seric **  COPYPLIST -- copy list of pointers.
1293151Seric **
1303151Seric **	This routine is the equivalent of newstr for lists of
1313151Seric **	pointers.
1323151Seric **
1333151Seric **	Parameters:
1343151Seric **		list -- list of pointers to copy.
1353151Seric **			Must be NULL terminated.
1363151Seric **		copycont -- if TRUE, copy the contents of the vector
1373151Seric **			(which must be a string) also.
1383151Seric **
1393151Seric **	Returns:
1403151Seric **		a copy of 'list'.
1413151Seric **
1423151Seric **	Side Effects:
1433151Seric **		none.
1443151Seric */
1453151Seric 
1463151Seric char **
1473151Seric copyplist(list, copycont)
1483151Seric 	char **list;
1493151Seric 	bool copycont;
1503151Seric {
1513151Seric 	register char **vp;
1523151Seric 	register char **newvp;
1533151Seric 
1543151Seric 	for (vp = list; *vp != NULL; vp++)
1553151Seric 		continue;
1563151Seric 
1573151Seric 	vp++;
1583151Seric 
15916897Seric 	newvp = (char **) xalloc((int) (vp - list) * sizeof *vp);
16016897Seric 	bcopy((char *) list, (char *) newvp, (int) (vp - list) * sizeof *vp);
1613151Seric 
1623151Seric 	if (copycont)
1633151Seric 	{
1643151Seric 		for (vp = newvp; *vp != NULL; vp++)
1653151Seric 			*vp = newstr(*vp);
1663151Seric 	}
1673151Seric 
1683151Seric 	return (newvp);
1693151Seric }
1703151Seric /*
1713151Seric **  PRINTAV -- print argument vector.
1723151Seric **
1733151Seric **	Parameters:
1743151Seric **		av -- argument vector.
1753151Seric **
1763151Seric **	Returns:
1773151Seric **		none.
1783151Seric **
1793151Seric **	Side Effects:
1803151Seric **		prints av.
1813151Seric */
1823151Seric 
1833151Seric printav(av)
1843151Seric 	register char **av;
1853151Seric {
1863151Seric 	while (*av != NULL)
1873151Seric 	{
1888063Seric 		if (tTd(0, 44))
1898063Seric 			printf("\n\t%08x=", *av);
1908063Seric 		else
19123105Seric 			(void) putchar(' ');
1923151Seric 		xputs(*av++);
1933151Seric 	}
19423105Seric 	(void) putchar('\n');
1953151Seric }
1963151Seric /*
1973151Seric **  LOWER -- turn letter into lower case.
1983151Seric **
1993151Seric **	Parameters:
2003151Seric **		c -- character to turn into lower case.
2013151Seric **
2023151Seric **	Returns:
2033151Seric **		c, in lower case.
2043151Seric **
2053151Seric **	Side Effects:
2063151Seric **		none.
2073151Seric */
2083151Seric 
2093151Seric char
2103151Seric lower(c)
2113151Seric 	register char c;
2123151Seric {
21333724Sbostic 	return(isascii(c) && isupper(c) ? tolower(c) : c);
2143151Seric }
2153151Seric /*
2163151Seric **  XPUTS -- put string doing control escapes.
2173151Seric **
2183151Seric **	Parameters:
2193151Seric **		s -- string to put.
2203151Seric **
2213151Seric **	Returns:
2223151Seric **		none.
2233151Seric **
2243151Seric **	Side Effects:
2253151Seric **		output to stdout
2263151Seric */
2273151Seric 
2283151Seric xputs(s)
2293151Seric 	register char *s;
2303151Seric {
2313151Seric 	register char c;
23251781Seric 	register struct metamac *mp;
23351781Seric 	extern struct metamac MetaMacros[];
2343151Seric 
2358055Seric 	if (s == NULL)
2368055Seric 	{
2378055Seric 		printf("<null>");
2388055Seric 		return;
2398055Seric 	}
2403151Seric 	while ((c = *s++) != '\0')
2413151Seric 	{
2423151Seric 		if (!isascii(c))
2433151Seric 		{
24423105Seric 			(void) putchar('\\');
2453151Seric 			c &= 0177;
2463151Seric 		}
247*57589Seric 		if (isprint(c))
2483151Seric 		{
249*57589Seric 			putchar(c);
250*57589Seric 			continue;
251*57589Seric 		}
252*57589Seric 		if (c == MATCHREPL || c == '\001')
253*57589Seric 		{
254*57589Seric 			putchar('$');
255*57589Seric 			continue;
256*57589Seric 		}
257*57589Seric 		for (mp = MetaMacros; mp->metaname != NULL; mp++)
258*57589Seric 		{
259*57589Seric 			if (mp->metaval == c)
26052050Seric 			{
261*57589Seric 				printf("$%c", mp->metaname);
262*57589Seric 				c = '\0';
26352050Seric 				break;
264*57589Seric 			}
265*57589Seric 		}
26652050Seric 
267*57589Seric 		/* wasn't a meta-macro -- find another way to print it */
268*57589Seric 		switch (c)
269*57589Seric 		{
270*57589Seric 		  case '\0':
271*57589Seric 			continue;
27252050Seric 
273*57589Seric 		  case '\n':
274*57589Seric 			c = 'n';
275*57589Seric 			break;
27652050Seric 
277*57589Seric 		  case '\r':
278*57589Seric 			c = 'r';
279*57589Seric 			break;
28052637Seric 
281*57589Seric 		  case '\t':
282*57589Seric 			c = 't';
283*57589Seric 			break;
284*57589Seric 
285*57589Seric 		  default:
286*57589Seric 			(void) putchar('^');
287*57589Seric 			(void) putchar(c ^ 0100);
288*57589Seric 			continue;
2893151Seric 		}
2903151Seric 	}
2914086Seric 	(void) fflush(stdout);
2923151Seric }
2933151Seric /*
2943151Seric **  MAKELOWER -- Translate a line into lower case
2953151Seric **
2963151Seric **	Parameters:
2973151Seric **		p -- the string to translate.  If NULL, return is
2983151Seric **			immediate.
2993151Seric **
3003151Seric **	Returns:
3013151Seric **		none.
3023151Seric **
3033151Seric **	Side Effects:
3043151Seric **		String pointed to by p is translated to lower case.
3053151Seric **
3063151Seric **	Called By:
3073151Seric **		parse
3083151Seric */
3093151Seric 
3103151Seric makelower(p)
3113151Seric 	register char *p;
3123151Seric {
3133151Seric 	register char c;
3143151Seric 
3153151Seric 	if (p == NULL)
3163151Seric 		return;
3173151Seric 	for (; (c = *p) != '\0'; p++)
3183151Seric 		if (isascii(c) && isupper(c))
31933724Sbostic 			*p = tolower(c);
3203151Seric }
3214059Seric /*
3225196Seric **  BUILDFNAME -- build full name from gecos style entry.
3234375Seric **
3245196Seric **	This routine interprets the strange entry that would appear
3255196Seric **	in the GECOS field of the password file.
3265196Seric **
3274375Seric **	Parameters:
3285196Seric **		p -- name to build.
3295196Seric **		login -- the login name of this user (for &).
3305196Seric **		buf -- place to put the result.
3314375Seric **
3324375Seric **	Returns:
3334375Seric **		none.
3344375Seric **
3354375Seric **	Side Effects:
3364375Seric **		none.
3374375Seric */
3384375Seric 
33954984Seric buildfname(gecos, login, buf)
34054984Seric 	register char *gecos;
3415196Seric 	char *login;
3424375Seric 	char *buf;
3434375Seric {
34454984Seric 	register char *p;
3454375Seric 	register char *bp = buf;
34654984Seric 	int l;
3474375Seric 
34854984Seric 	if (*gecos == '*')
34954984Seric 		gecos++;
35054984Seric 
35157123Seric 	/* find length of final string */
35254984Seric 	l = 0;
35354984Seric 	for (p = gecos; *p != '\0' && *p != ',' && *p != ';' && *p != '%'; p++)
35454984Seric 	{
35554984Seric 		if (*p == '&')
35654984Seric 			l += strlen(login);
35754984Seric 		else
35854984Seric 			l++;
35954984Seric 	}
36054984Seric 
36154984Seric 	/* now fill in buf */
36255193Seric 	for (p = gecos; *p != '\0' && *p != ',' && *p != ';' && *p != '%'; p++)
3634375Seric 	{
3644375Seric 		if (*p == '&')
3654375Seric 		{
3665196Seric 			(void) strcpy(bp, login);
3674375Seric 			*bp = toupper(*bp);
3684375Seric 			while (*bp != '\0')
3694375Seric 				bp++;
3704375Seric 		}
3714375Seric 		else
37255193Seric 			*bp++ = *p;
3734375Seric 	}
3744375Seric 	*bp = '\0';
3754375Seric }
3764375Seric /*
3774538Seric **  SAFEFILE -- return true if a file exists and is safe for a user.
3784538Seric **
3794538Seric **	Parameters:
3804538Seric **		fn -- filename to check.
3814538Seric **		uid -- uid to compare against.
3824538Seric **		mode -- mode bits that must match.
3834538Seric **
3844538Seric **	Returns:
3854538Seric **		TRUE if fn exists, is owned by uid, and matches mode.
3864538Seric **		FALSE otherwise.
3874538Seric **
3884538Seric **	Side Effects:
3894538Seric **		none.
3904538Seric */
3914538Seric 
3924538Seric bool
3934538Seric safefile(fn, uid, mode)
3944538Seric 	char *fn;
39555372Seric 	uid_t uid;
3964538Seric 	int mode;
3974538Seric {
3984538Seric 	struct stat stbuf;
3994538Seric 
4004538Seric 	if (stat(fn, &stbuf) >= 0 && stbuf.st_uid == uid &&
4014538Seric 	    (stbuf.st_mode & mode) == mode)
4024538Seric 		return (TRUE);
40311936Seric 	errno = 0;
4044538Seric 	return (FALSE);
4054538Seric }
4064538Seric /*
4074557Seric **  FIXCRLF -- fix <CR><LF> in line.
4084557Seric **
4094557Seric **	Looks for the <CR><LF> combination and turns it into the
4104557Seric **	UNIX canonical <NL> character.  It only takes one line,
4114557Seric **	i.e., it is assumed that the first <NL> found is the end
4124557Seric **	of the line.
4134557Seric **
4144557Seric **	Parameters:
4154557Seric **		line -- the line to fix.
4164557Seric **		stripnl -- if true, strip the newline also.
4174557Seric **
4184557Seric **	Returns:
4194557Seric **		none.
4204557Seric **
4214557Seric **	Side Effects:
4224557Seric **		line is changed in place.
4234557Seric */
4244557Seric 
4254557Seric fixcrlf(line, stripnl)
4264557Seric 	char *line;
4274557Seric 	bool stripnl;
4284557Seric {
4294557Seric 	register char *p;
4304557Seric 
43156795Seric 	p = strchr(line, '\n');
4324557Seric 	if (p == NULL)
4334557Seric 		return;
43436291Sbostic 	if (p > line && p[-1] == '\r')
4354557Seric 		p--;
4364557Seric 	if (!stripnl)
4374557Seric 		*p++ = '\n';
4384557Seric 	*p = '\0';
4394557Seric }
4404557Seric /*
4416890Seric **  DFOPEN -- determined file open
4426890Seric **
4436890Seric **	This routine has the semantics of fopen, except that it will
4446890Seric **	keep trying a few times to make this happen.  The idea is that
4456890Seric **	on very loaded systems, we may run out of resources (inodes,
4466890Seric **	whatever), so this tries to get around it.
4476890Seric */
4486890Seric 
4496890Seric FILE *
4506890Seric dfopen(filename, mode)
4516890Seric 	char *filename;
4526890Seric 	char *mode;
4536890Seric {
4546890Seric 	register int tries;
4556890Seric 	register FILE *fp;
4566890Seric 
4576890Seric 	for (tries = 0; tries < 10; tries++)
4586890Seric 	{
45925618Seric 		sleep((unsigned) (10 * tries));
4606890Seric 		errno = 0;
4616890Seric 		fp = fopen(filename, mode);
4629376Seric 		if (fp != NULL)
4636890Seric 			break;
4649376Seric 		if (errno != ENFILE && errno != EINTR)
4659376Seric 			break;
4666890Seric 	}
46756328Seric 	if (fp != NULL)
46856328Seric 	{
46956328Seric #ifdef FLOCK
47056328Seric 		int locktype;
47156328Seric 
47256328Seric 		/* lock the file to avoid accidental conflicts */
47356328Seric 		if (*mode == 'w' || *mode == 'a')
47456328Seric 			locktype = LOCK_EX;
47556328Seric 		else
47656328Seric 			locktype = LOCK_SH;
47756328Seric 		(void) flock(fileno(fp), locktype);
47856328Seric #endif
47956328Seric 		errno = 0;
48056328Seric 	}
4816890Seric 	return (fp);
4826890Seric }
4837124Seric /*
4847124Seric **  PUTLINE -- put a line like fputs obeying SMTP conventions
4857124Seric **
4867753Seric **	This routine always guarantees outputing a newline (or CRLF,
4877753Seric **	as appropriate) at the end of the string.
4887753Seric **
4897124Seric **	Parameters:
4907124Seric **		l -- line to put.
4917124Seric **		fp -- file to put it onto.
49210172Seric **		m -- the mailer used to control output.
4937124Seric **
4947124Seric **	Returns:
4957124Seric **		none
4967124Seric **
4977124Seric **	Side Effects:
4987124Seric **		output of l to fp.
4997124Seric */
5007124Seric 
50110172Seric putline(l, fp, m)
5027753Seric 	register char *l;
5037124Seric 	FILE *fp;
50410172Seric 	MAILER *m;
5057124Seric {
5067124Seric 	register char *p;
50747157Sbostic 	register char svchar;
5087124Seric 
50911275Seric 	/* strip out 0200 bits -- these can look like TELNET protocol */
51052106Seric 	if (bitnset(M_7BITS, m->m_flags))
51111275Seric 	{
51247157Sbostic 		for (p = l; svchar = *p; ++p)
51347157Sbostic 			if (svchar & 0200)
51447157Sbostic 				*p = svchar &~ 0200;
51511275Seric 	}
51611275Seric 
5177753Seric 	do
5187124Seric 	{
5197753Seric 		/* find the end of the line */
52056795Seric 		p = strchr(l, '\n');
5217753Seric 		if (p == NULL)
5227753Seric 			p = &l[strlen(l)];
5237124Seric 
5247753Seric 		/* check for line overflow */
52552106Seric 		while (m->m_linelimit > 0 && (p - l) > m->m_linelimit)
5267753Seric 		{
52752106Seric 			register char *q = &l[m->m_linelimit - 1];
5287124Seric 
5297753Seric 			svchar = *q;
5307753Seric 			*q = '\0';
53110685Seric 			if (l[0] == '.' && bitnset(M_XDOT, m->m_flags))
53223105Seric 				(void) putc('.', fp);
5337753Seric 			fputs(l, fp);
53423105Seric 			(void) putc('!', fp);
53510326Seric 			fputs(m->m_eol, fp);
5367753Seric 			*q = svchar;
5377753Seric 			l = q;
5387753Seric 		}
5397124Seric 
5407753Seric 		/* output last part */
54110685Seric 		if (l[0] == '.' && bitnset(M_XDOT, m->m_flags))
54223105Seric 			(void) putc('.', fp);
54347157Sbostic 		for ( ; l < p; ++l)
54447157Sbostic 			(void) putc(*l, fp);
54510326Seric 		fputs(m->m_eol, fp);
5467753Seric 		if (*l == '\n')
54747157Sbostic 			++l;
5487753Seric 	} while (l[0] != '\0');
5497124Seric }
5507676Seric /*
5517676Seric **  XUNLINK -- unlink a file, doing logging as appropriate.
5527676Seric **
5537676Seric **	Parameters:
5547676Seric **		f -- name of file to unlink.
5557676Seric **
5567676Seric **	Returns:
5577676Seric **		none.
5587676Seric **
5597676Seric **	Side Effects:
5607676Seric **		f is unlinked.
5617676Seric */
5627676Seric 
5637676Seric xunlink(f)
5647676Seric 	char *f;
5657676Seric {
5667676Seric 	register int i;
5677676Seric 
5687676Seric # ifdef LOG
5697676Seric 	if (LogLevel > 20)
5707812Seric 		syslog(LOG_DEBUG, "%s: unlink %s\n", CurEnv->e_id, f);
57156795Seric # endif /* LOG */
5727676Seric 
5737676Seric 	i = unlink(f);
5747676Seric # ifdef LOG
5757676Seric 	if (i < 0 && LogLevel > 21)
5767942Seric 		syslog(LOG_DEBUG, "%s: unlink-fail %d", f, errno);
57756795Seric # endif /* LOG */
5787676Seric }
5797685Seric /*
58014885Seric **  SFGETS -- "safe" fgets -- times out and ignores random interrupts.
5817685Seric **
5827685Seric **	Parameters:
5837685Seric **		buf -- place to put the input line.
5847685Seric **		siz -- size of buf.
5857685Seric **		fp -- file to read from.
58657384Seric **		timeout -- the timeout before error occurs.
5877685Seric **
5887685Seric **	Returns:
58915533Seric **		NULL on error (including timeout).  This will also leave
59015533Seric **			buf containing a null string.
5917685Seric **		buf otherwise.
5927685Seric **
5937685Seric **	Side Effects:
5947685Seric **		none.
5957685Seric */
5967685Seric 
59714885Seric static jmp_buf	CtxReadTimeout;
5987685Seric 
5997685Seric char *
60057384Seric sfgets(buf, siz, fp, timeout)
6017685Seric 	char *buf;
6027685Seric 	int siz;
6037685Seric 	FILE *fp;
60457384Seric 	time_t timeout;
6057685Seric {
6067942Seric 	register EVENT *ev = NULL;
6077685Seric 	register char *p;
60846928Sbostic 	static int readtimeout();
6097685Seric 
61014885Seric 	/* set the timeout */
61157384Seric 	if (timeout != 0)
61214885Seric 	{
61314885Seric 		if (setjmp(CtxReadTimeout) != 0)
61414885Seric 		{
61536233Skarels # ifdef LOG
61636230Skarels 			syslog(LOG_NOTICE,
61736230Skarels 			    "timeout waiting for input from %s\n",
61840998Sbostic 			    RealHostName? RealHostName: "local");
61936233Skarels # endif
62036230Skarels 			errno = 0;
62140964Sbostic 			usrerr("451 timeout waiting for input");
62219037Seric 			buf[0] = '\0';
62314885Seric 			return (NULL);
62414885Seric 		}
62557384Seric 		ev = setevent(timeout, readtimeout, 0);
62614885Seric 	}
62714885Seric 
62814885Seric 	/* try to read */
62915533Seric 	p = NULL;
63015533Seric 	while (p == NULL && !feof(fp) && !ferror(fp))
6317942Seric 	{
6327942Seric 		errno = 0;
6337942Seric 		p = fgets(buf, siz, fp);
63415533Seric 		if (errno == EINTR)
63515533Seric 			clearerr(fp);
63615533Seric 	}
63714885Seric 
63814885Seric 	/* clear the event if it has not sprung */
6397685Seric 	clrevent(ev);
64014885Seric 
64114885Seric 	/* clean up the books and exit */
6428055Seric 	LineNumber++;
64315533Seric 	if (p == NULL)
64416880Seric 	{
64515533Seric 		buf[0] = '\0';
64616880Seric 		return (NULL);
64716880Seric 	}
64852106Seric 	if (!EightBit)
64952106Seric 		for (p = buf; *p != '\0'; p++)
65052106Seric 			*p &= ~0200;
65116880Seric 	return (buf);
6527685Seric }
6537685Seric 
6547685Seric static
6557685Seric readtimeout()
6567685Seric {
65714885Seric 	longjmp(CtxReadTimeout, 1);
6587685Seric }
6597786Seric /*
6607786Seric **  FGETFOLDED -- like fgets, but know about folded lines.
6617786Seric **
6627786Seric **	Parameters:
6637786Seric **		buf -- place to put result.
6647786Seric **		n -- bytes available.
6657786Seric **		f -- file to read from.
6667786Seric **
6677786Seric **	Returns:
66857135Seric **		input line(s) on success, NULL on error or EOF.
66957135Seric **		This will normally be buf -- unless the line is too
67057135Seric **			long, when it will be xalloc()ed.
6717786Seric **
6727786Seric **	Side Effects:
6737786Seric **		buf gets lines from f, with continuation lines (lines
6747786Seric **		with leading white space) appended.  CRLF's are mapped
6757786Seric **		into single newlines.  Any trailing NL is stripped.
6767786Seric */
6777786Seric 
6787786Seric char *
6797786Seric fgetfolded(buf, n, f)
6807786Seric 	char *buf;
6817786Seric 	register int n;
6827786Seric 	FILE *f;
6837786Seric {
6847786Seric 	register char *p = buf;
68557135Seric 	char *bp = buf;
6867786Seric 	register int i;
6877786Seric 
6887786Seric 	n--;
68917350Seric 	while ((i = getc(f)) != EOF)
6907786Seric 	{
69117350Seric 		if (i == '\r')
69217350Seric 		{
69317350Seric 			i = getc(f);
69417350Seric 			if (i != '\n')
69517350Seric 			{
69617350Seric 				if (i != EOF)
69723105Seric 					(void) ungetc(i, f);
69817350Seric 				i = '\r';
69917350Seric 			}
70017350Seric 		}
70157135Seric 		if (--n <= 0)
70257135Seric 		{
70357135Seric 			/* allocate new space */
70457135Seric 			char *nbp;
70557135Seric 			int nn;
70657135Seric 
70757135Seric 			nn = (p - bp);
70857232Seric 			if (nn < MEMCHUNKSIZE)
70957135Seric 				nn *= 2;
71057135Seric 			else
71157232Seric 				nn += MEMCHUNKSIZE;
71257135Seric 			nbp = xalloc(nn);
71357135Seric 			bcopy(bp, nbp, p - bp);
71457135Seric 			p = &nbp[p - bp];
71557135Seric 			if (bp != buf)
71657135Seric 				free(bp);
71757135Seric 			bp = nbp;
71857135Seric 			n = nn - (p - bp);
71957135Seric 		}
72057135Seric 		*p++ = i;
72117350Seric 		if (i == '\n')
72217350Seric 		{
72317350Seric 			LineNumber++;
72417350Seric 			i = getc(f);
72517350Seric 			if (i != EOF)
72623105Seric 				(void) ungetc(i, f);
72717350Seric 			if (i != ' ' && i != '\t')
72852647Seric 				break;
72917350Seric 		}
7307786Seric 	}
73157135Seric 	if (p == bp)
73252647Seric 		return (NULL);
73352647Seric 	*--p = '\0';
73457135Seric 	return (bp);
7357786Seric }
7367860Seric /*
7377886Seric **  CURTIME -- return current time.
7387886Seric **
7397886Seric **	Parameters:
7407886Seric **		none.
7417886Seric **
7427886Seric **	Returns:
7437886Seric **		the current time.
7447886Seric **
7457886Seric **	Side Effects:
7467886Seric **		none.
7477886Seric */
7487886Seric 
7497886Seric time_t
7507886Seric curtime()
7517886Seric {
7527886Seric 	auto time_t t;
7537886Seric 
7547886Seric 	(void) time(&t);
7557886Seric 	return (t);
7567886Seric }
7578264Seric /*
7588264Seric **  ATOBOOL -- convert a string representation to boolean.
7598264Seric **
7608264Seric **	Defaults to "TRUE"
7618264Seric **
7628264Seric **	Parameters:
7638264Seric **		s -- string to convert.  Takes "tTyY" as true,
7648264Seric **			others as false.
7658264Seric **
7668264Seric **	Returns:
7678264Seric **		A boolean representation of the string.
7688264Seric **
7698264Seric **	Side Effects:
7708264Seric **		none.
7718264Seric */
7728264Seric 
7738264Seric bool
7748264Seric atobool(s)
7758264Seric 	register char *s;
7768264Seric {
77756795Seric 	if (*s == '\0' || strchr("tTyY", *s) != NULL)
7788264Seric 		return (TRUE);
7798264Seric 	return (FALSE);
7808264Seric }
7819048Seric /*
7829048Seric **  ATOOCT -- convert a string representation to octal.
7839048Seric **
7849048Seric **	Parameters:
7859048Seric **		s -- string to convert.
7869048Seric **
7879048Seric **	Returns:
7889048Seric **		An integer representing the string interpreted as an
7899048Seric **		octal number.
7909048Seric **
7919048Seric **	Side Effects:
7929048Seric **		none.
7939048Seric */
7949048Seric 
7959048Seric atooct(s)
7969048Seric 	register char *s;
7979048Seric {
7989048Seric 	register int i = 0;
7999048Seric 
8009048Seric 	while (*s >= '0' && *s <= '7')
8019048Seric 		i = (i << 3) | (*s++ - '0');
8029048Seric 	return (i);
8039048Seric }
8049376Seric /*
8059376Seric **  WAITFOR -- wait for a particular process id.
8069376Seric **
8079376Seric **	Parameters:
8089376Seric **		pid -- process id to wait for.
8099376Seric **
8109376Seric **	Returns:
8119376Seric **		status of pid.
8129376Seric **		-1 if pid never shows up.
8139376Seric **
8149376Seric **	Side Effects:
8159376Seric **		none.
8169376Seric */
8179376Seric 
8189376Seric waitfor(pid)
8199376Seric 	int pid;
8209376Seric {
8219376Seric 	auto int st;
8229376Seric 	int i;
8239376Seric 
8249376Seric 	do
8259376Seric 	{
8269376Seric 		errno = 0;
8279376Seric 		i = wait(&st);
8289376Seric 	} while ((i >= 0 || errno == EINTR) && i != pid);
8299376Seric 	if (i < 0)
8309376Seric 		st = -1;
8319376Seric 	return (st);
8329376Seric }
8339376Seric /*
83410685Seric **  BITINTERSECT -- tell if two bitmaps intersect
83510685Seric **
83610685Seric **	Parameters:
83710685Seric **		a, b -- the bitmaps in question
83810685Seric **
83910685Seric **	Returns:
84010685Seric **		TRUE if they have a non-null intersection
84110685Seric **		FALSE otherwise
84210685Seric **
84310685Seric **	Side Effects:
84410685Seric **		none.
84510685Seric */
84610685Seric 
84710685Seric bool
84810685Seric bitintersect(a, b)
84910685Seric 	BITMAP a;
85010685Seric 	BITMAP b;
85110685Seric {
85210685Seric 	int i;
85310685Seric 
85410685Seric 	for (i = BITMAPBYTES / sizeof (int); --i >= 0; )
85510685Seric 		if ((a[i] & b[i]) != 0)
85610685Seric 			return (TRUE);
85710685Seric 	return (FALSE);
85810685Seric }
85910685Seric /*
86010685Seric **  BITZEROP -- tell if a bitmap is all zero
86110685Seric **
86210685Seric **	Parameters:
86310685Seric **		map -- the bit map to check
86410685Seric **
86510685Seric **	Returns:
86610685Seric **		TRUE if map is all zero.
86710685Seric **		FALSE if there are any bits set in map.
86810685Seric **
86910685Seric **	Side Effects:
87010685Seric **		none.
87110685Seric */
87210685Seric 
87310685Seric bool
87410685Seric bitzerop(map)
87510685Seric 	BITMAP map;
87610685Seric {
87710685Seric 	int i;
87810685Seric 
87910685Seric 	for (i = BITMAPBYTES / sizeof (int); --i >= 0; )
88010685Seric 		if (map[i] != 0)
88110685Seric 			return (FALSE);
88210685Seric 	return (TRUE);
88310685Seric }
884