xref: /csrg-svn/usr.sbin/sendmail/src/macro.c (revision 64087)
122707Sdist /*
234921Sbostic  * Copyright (c) 1983 Eric P. Allman
362525Sbostic  * Copyright (c) 1988, 1993
462525Sbostic  *	The Regents of the University of California.  All rights reserved.
533729Sbostic  *
642826Sbostic  * %sccs.include.redist.c%
733729Sbostic  */
822707Sdist 
922707Sdist #ifndef lint
10*64087Seric static char sccsid[] = "@(#)macro.c	8.2 (Berkeley) 07/29/93";
1133729Sbostic #endif /* not lint */
1222707Sdist 
136056Seric # include "sendmail.h"
143379Seric 
153379Seric /*
163379Seric **  EXPAND -- macro expand a string using $x escapes.
173379Seric **
183379Seric **	Parameters:
193379Seric **		s -- the string to expand.
203379Seric **		buf -- the place to put the expansion.
213379Seric **		buflim -- the buffer limit, i.e., the address
223379Seric **			of the last usable position in buf.
236980Seric **		e -- envelope in which to work.
243379Seric **
253379Seric **	Returns:
269382Seric **		none.
273379Seric **
283379Seric **	Side Effects:
293379Seric **		none.
303379Seric */
313379Seric 
3260494Seric void
336980Seric expand(s, buf, buflim, e)
346980Seric 	register char *s;
356980Seric 	register char *buf;
366980Seric 	char *buflim;
376980Seric 	register ENVELOPE *e;
386980Seric {
3917349Seric 	register char *xp;
406056Seric 	register char *q;
419382Seric 	bool skipping;		/* set if conditionally skipping output */
4217349Seric 	bool recurse = FALSE;	/* set if recursion required */
4317349Seric 	int i;
4457589Seric 	int iflev;		/* if nesting level */
456056Seric 	char xbuf[BUFSIZ];
463379Seric 
4724941Seric 	if (tTd(35, 24))
486056Seric 	{
496056Seric 		printf("expand(");
506056Seric 		xputs(s);
516056Seric 		printf(")\n");
526056Seric 	}
533379Seric 
543387Seric 	skipping = FALSE;
5557589Seric 	iflev = 0;
568064Seric 	if (s == NULL)
578064Seric 		s = "";
5817349Seric 	for (xp = xbuf; *s != '\0'; s++)
593379Seric 	{
60*64087Seric 		int c;
614319Seric 
624319Seric 		/*
636056Seric 		**  Check for non-ordinary (special?) character.
644319Seric 		**	'q' will be the interpolated quantity.
654319Seric 		*/
664319Seric 
673379Seric 		q = NULL;
686056Seric 		c = *s;
6958050Seric 		switch (c & 0377)
703387Seric 		{
716056Seric 		  case CONDIF:		/* see if var set */
7257977Seric 			c = *++s;
7357977Seric 			if (skipping)
7457977Seric 				iflev++;
7557977Seric 			else
7657589Seric 				skipping = macvalue(c, e) == NULL;
7757977Seric 			continue;
783387Seric 
796056Seric 		  case CONDELSE:	/* change state of skipping */
8057977Seric 			if (iflev == 0)
8157589Seric 				skipping = !skipping;
826056Seric 			continue;
833387Seric 
846056Seric 		  case CONDFI:		/* stop skipping */
8557977Seric 			if (iflev == 0)
8657589Seric 				skipping = FALSE;
8757977Seric 			if (skipping)
8857977Seric 				iflev--;
8957977Seric 			continue;
903387Seric 
9158050Seric 		  case MACROEXPAND:	/* macro interpolation */
926056Seric 			c = *++s;
938182Seric 			q = macvalue(c & 0177, e);
949382Seric 			if (q == NULL)
953387Seric 				continue;
966056Seric 			break;
973387Seric 		}
983387Seric 
993379Seric 		/*
1003379Seric 		**  Interpolate q or output one character
1013379Seric 		*/
1023379Seric 
10317349Seric 		if (skipping || xp >= &xbuf[sizeof xbuf])
1043387Seric 			continue;
10517349Seric 		if (q == NULL)
10617349Seric 			*xp++ = c;
10717349Seric 		else
1086056Seric 		{
10917349Seric 			/* copy to end of q or max space remaining in buf */
11017349Seric 			while ((c = *q++) != '\0' && xp < &xbuf[sizeof xbuf - 1])
1116056Seric 			{
11258050Seric 				/* check for any sendmail metacharacters */
11358050Seric 				if ((c & 0340) == 0200)
11417349Seric 					recurse = TRUE;
1156056Seric 				*xp++ = c;
1166056Seric 			}
1176056Seric 		}
1183379Seric 	}
1196056Seric 	*xp = '\0';
1203379Seric 
12124941Seric 	if (tTd(35, 24))
1226056Seric 	{
1238064Seric 		printf("expand ==> ");
1246056Seric 		xputs(xbuf);
1258064Seric 		printf("\n");
1266056Seric 	}
1273379Seric 
1286056Seric 	/* recurse as appropriate */
12917349Seric 	if (recurse)
1309382Seric 	{
1319382Seric 		expand(xbuf, buf, buflim, e);
1329382Seric 		return;
1339382Seric 	}
1346056Seric 
1356056Seric 	/* copy results out */
13617349Seric 	i = buflim - buf - 1;
13717349Seric 	if (i > xp - xbuf)
13817349Seric 		i = xp - xbuf;
13917349Seric 	bcopy(xbuf, buf, i);
14017349Seric 	buf[i] = '\0';
1413379Seric }
1423379Seric /*
1433379Seric **  DEFINE -- define a macro.
1443379Seric **
1453379Seric **	this would be better done using a #define macro.
1463379Seric **
1473379Seric **	Parameters:
1483379Seric **		n -- the macro name.
1493379Seric **		v -- the macro value.
1509382Seric **		e -- the envelope to store the definition in.
1513379Seric **
1523379Seric **	Returns:
1533379Seric **		none.
1543379Seric **
1553379Seric **	Side Effects:
1569382Seric **		e->e_macro[n] is defined.
1574092Seric **
1584092Seric **	Notes:
1594092Seric **		There is one macro for each ASCII character,
1604092Seric **		although they are not all used.  The currently
1614092Seric **		defined macros are:
1624092Seric **
1634202Seric **		$a   date in ARPANET format (preferring the Date: line
1644202Seric **		     of the message)
1654202Seric **		$b   the current date (as opposed to the date as found
1664202Seric **		     the message) in ARPANET format
1674092Seric **		$c   hop count
1684202Seric **		$d   (current) date in UNIX (ctime) format
16910710Seric **		$e   the SMTP entry message+
1704092Seric **		$f   raw from address
1714092Seric **		$g   translated from address
1724092Seric **		$h   to host
1737851Seric **		$i   queue id
1747851Seric **		$j   official SMTP hostname, used in messages+
17557630Seric **		$k   UUCP node name
1764092Seric **		$l   UNIX-style from line+
17758319Seric **		$m   The domain part of our full name.
1784092Seric **		$n   name of sendmail ("MAILER-DAEMON" on local
1794092Seric **		     net typically)+
1804092Seric **		$o   delimiters ("operators") for address tokens+
1814092Seric **		$p   my process id in decimal
1825919Seric **		$q   the string that becomes an address -- this is
1835919Seric **		     normally used to combine $g & $x.
1845187Seric **		$r   protocol used to talk to sender
1855187Seric **		$s   sender's host name
1864092Seric **		$t   the current time in seconds since 1/1/1970
1874092Seric **		$u   to user
1884092Seric **		$v   version number of sendmail
18910407Seric **		$w   our host name (if it can be determined)
1904092Seric **		$x   signature (full name) of from person
1914202Seric **		$y   the tty id of our terminal
1924092Seric **		$z   home directory of to person
19358951Seric **		$_   RFC1413 authenticated sender address
1944092Seric **
1954092Seric **		Macros marked with + must be defined in the
1964092Seric **		configuration file and are used internally, but
1974092Seric **		are not set.
1984092Seric **
1994092Seric **		There are also some macros that can be used
2004092Seric **		arbitrarily to make the configuration file
2014092Seric **		cleaner.  In general all upper-case letters
2024092Seric **		are available.
2033379Seric */
2043379Seric 
20560494Seric void
2069382Seric define(n, v, e)
207*64087Seric 	int n;
2083379Seric 	char *v;
2099382Seric 	register ENVELOPE *e;
2103379Seric {
21124941Seric 	if (tTd(35, 9))
2126056Seric 	{
2136056Seric 		printf("define(%c as ", n);
2146056Seric 		xputs(v);
2156056Seric 		printf(")\n");
2166056Seric 	}
2179382Seric 	e->e_macro[n & 0177] = v;
2183379Seric }
2194454Seric /*
2204454Seric **  MACVALUE -- return uninterpreted value of a macro.
2214454Seric **
2224454Seric **	Parameters:
2234454Seric **		n -- the name of the macro.
2244454Seric **
2254454Seric **	Returns:
2264454Seric **		The value of n.
2274454Seric **
2284454Seric **	Side Effects:
2294454Seric **		none.
2304454Seric */
2314454Seric 
2324454Seric char *
2338182Seric macvalue(n, e)
234*64087Seric 	int n;
2358182Seric 	register ENVELOPE *e;
2364454Seric {
2378182Seric 	n &= 0177;
2388182Seric 	while (e != NULL)
2398182Seric 	{
2408182Seric 		register char *p = e->e_macro[n];
2418182Seric 
2428182Seric 		if (p != NULL)
2438182Seric 			return (p);
2448182Seric 		e = e->e_parent;
2458182Seric 	}
2468182Seric 	return (NULL);
2474454Seric }
248