1 /*
2  * Copyright (c) 1983 Eric P. Allman
3  * Copyright (c) 1988, 1993
4  *	The Regents of the University of California.  All rights reserved.
5  *
6  * %sccs.include.redist.c%
7  */
8 
9 #ifndef lint
10 static char sccsid[] = "@(#)parseaddr.c	8.38 (Berkeley) 10/17/94";
11 #endif /* not lint */
12 
13 # include "sendmail.h"
14 
15 /*
16 **  PARSEADDR -- Parse an address
17 **
18 **	Parses an address and breaks it up into three parts: a
19 **	net to transmit the message on, the host to transmit it
20 **	to, and a user on that host.  These are loaded into an
21 **	ADDRESS header with the values squirreled away if necessary.
22 **	The "user" part may not be a real user; the process may
23 **	just reoccur on that machine.  For example, on a machine
24 **	with an arpanet connection, the address
25 **		csvax.bill@berkeley
26 **	will break up to a "user" of 'csvax.bill' and a host
27 **	of 'berkeley' -- to be transmitted over the arpanet.
28 **
29 **	Parameters:
30 **		addr -- the address to parse.
31 **		a -- a pointer to the address descriptor buffer.
32 **			If NULL, a header will be created.
33 **		flags -- describe detail for parsing.  See RF_ definitions
34 **			in sendmail.h.
35 **		delim -- the character to terminate the address, passed
36 **			to prescan.
37 **		delimptr -- if non-NULL, set to the location of the
38 **			delim character that was found.
39 **		e -- the envelope that will contain this address.
40 **
41 **	Returns:
42 **		A pointer to the address descriptor header (`a' if
43 **			`a' is non-NULL).
44 **		NULL on error.
45 **
46 **	Side Effects:
47 **		none
48 */
49 
50 /* following delimiters are inherent to the internal algorithms */
51 # define DELIMCHARS	"()<>,;\r\n"	/* default word delimiters */
52 
53 ADDRESS *
54 parseaddr(addr, a, flags, delim, delimptr, e)
55 	char *addr;
56 	register ADDRESS *a;
57 	int flags;
58 	int delim;
59 	char **delimptr;
60 	register ENVELOPE *e;
61 {
62 	register char **pvp;
63 	auto char *delimptrbuf;
64 	bool queueup;
65 	char pvpbuf[PSBUFSIZE];
66 	extern ADDRESS *buildaddr();
67 	extern bool invalidaddr();
68 
69 	/*
70 	**  Initialize and prescan address.
71 	*/
72 
73 	e->e_to = addr;
74 	if (tTd(20, 1))
75 		printf("\n--parseaddr(%s)\n", addr);
76 
77 	if (delimptr == NULL)
78 		delimptr = &delimptrbuf;
79 
80 	pvp = prescan(addr, delim, pvpbuf, sizeof pvpbuf, delimptr);
81 	if (pvp == NULL)
82 	{
83 		if (tTd(20, 1))
84 			printf("parseaddr-->NULL\n");
85 		return (NULL);
86 	}
87 
88 	if (invalidaddr(addr, delim == '\0' ? NULL : *delimptr))
89 	{
90 		if (tTd(20, 1))
91 			printf("parseaddr-->bad address\n");
92 		return NULL;
93 	}
94 
95 	/*
96 	**  Save addr if we are going to have to.
97 	**
98 	**	We have to do this early because there is a chance that
99 	**	the map lookups in the rewriting rules could clobber
100 	**	static memory somewhere.
101 	*/
102 
103 	if (bitset(RF_COPYPADDR, flags) && addr != NULL)
104 	{
105 		char savec = **delimptr;
106 
107 		if (savec != '\0')
108 			**delimptr = '\0';
109 		e->e_to = addr = newstr(addr);
110 		if (savec != '\0')
111 			**delimptr = savec;
112 	}
113 
114 	/*
115 	**  Apply rewriting rules.
116 	**	Ruleset 0 does basic parsing.  It must resolve.
117 	*/
118 
119 	queueup = FALSE;
120 	if (rewrite(pvp, 3, 0, e) == EX_TEMPFAIL)
121 		queueup = TRUE;
122 	if (rewrite(pvp, 0, 0, e) == EX_TEMPFAIL)
123 		queueup = TRUE;
124 
125 
126 	/*
127 	**  Build canonical address from pvp.
128 	*/
129 
130 	a = buildaddr(pvp, a, flags, e);
131 
132 	/*
133 	**  Make local copies of the host & user and then
134 	**  transport them out.
135 	*/
136 
137 	allocaddr(a, flags, addr);
138 	if (bitset(QBADADDR, a->q_flags))
139 		return a;
140 
141 	/*
142 	**  If there was a parsing failure, mark it for queueing.
143 	*/
144 
145 	if (queueup)
146 	{
147 		char *msg = "Transient parse error -- message queued for future delivery";
148 
149 		if (tTd(20, 1))
150 			printf("parseaddr: queuing message\n");
151 		message(msg);
152 		if (e->e_message == NULL)
153 			e->e_message = newstr(msg);
154 		a->q_flags |= QQUEUEUP;
155 	}
156 
157 	/*
158 	**  Compute return value.
159 	*/
160 
161 	if (tTd(20, 1))
162 	{
163 		printf("parseaddr-->");
164 		printaddr(a, FALSE);
165 	}
166 
167 	return (a);
168 }
169 /*
170 **  INVALIDADDR -- check for address containing meta-characters
171 **
172 **	Parameters:
173 **		addr -- the address to check.
174 **
175 **	Returns:
176 **		TRUE -- if the address has any "wierd" characters
177 **		FALSE -- otherwise.
178 */
179 
180 bool
181 invalidaddr(addr, delimptr)
182 	register char *addr;
183 	char *delimptr;
184 {
185 	char savedelim;
186 
187 	if (delimptr != NULL)
188 	{
189 		savedelim = *delimptr;
190 		if (savedelim != '\0')
191 			*delimptr = '\0';
192 	}
193 #if 0
194 	/* for testing.... */
195 	if (strcmp(addr, "INvalidADDR") == 0)
196 	{
197 		usrerr("553 INvalid ADDRess");
198 		goto addrfailure;
199 	}
200 #endif
201 	for (; *addr != '\0'; addr++)
202 	{
203 		if ((*addr & 0340) == 0200)
204 			break;
205 	}
206 	if (*addr == '\0')
207 	{
208 		if (savedelim != '\0' && delimptr != NULL)
209 			*delimptr = savedelim;
210 		return FALSE;
211 	}
212 	setstat(EX_USAGE);
213 	usrerr("553 Address contained invalid control characters");
214   addrfailure:
215 	if (savedelim != '\0' && delimptr != NULL)
216 		*delimptr = savedelim;
217 	return TRUE;
218 }
219 /*
220 **  ALLOCADDR -- do local allocations of address on demand.
221 **
222 **	Also lowercases the host name if requested.
223 **
224 **	Parameters:
225 **		a -- the address to reallocate.
226 **		flags -- the copy flag (see RF_ definitions in sendmail.h
227 **			for a description).
228 **		paddr -- the printname of the address.
229 **
230 **	Returns:
231 **		none.
232 **
233 **	Side Effects:
234 **		Copies portions of a into local buffers as requested.
235 */
236 
237 allocaddr(a, flags, paddr)
238 	register ADDRESS *a;
239 	int flags;
240 	char *paddr;
241 {
242 	if (tTd(24, 4))
243 		printf("allocaddr(flags=%x, paddr=%s)\n", flags, paddr);
244 
245 	a->q_paddr = paddr;
246 
247 	if (a->q_user == NULL)
248 		a->q_user = "";
249 	if (a->q_host == NULL)
250 		a->q_host = "";
251 
252 	if (bitset(RF_COPYPARSE, flags))
253 	{
254 		a->q_host = newstr(a->q_host);
255 		if (a->q_user != a->q_paddr)
256 			a->q_user = newstr(a->q_user);
257 	}
258 
259 	if (a->q_paddr == NULL)
260 		a->q_paddr = a->q_user;
261 }
262 /*
263 **  PRESCAN -- Prescan name and make it canonical
264 **
265 **	Scans a name and turns it into a set of tokens.  This process
266 **	deletes blanks and comments (in parentheses).
267 **
268 **	This routine knows about quoted strings and angle brackets.
269 **
270 **	There are certain subtleties to this routine.  The one that
271 **	comes to mind now is that backslashes on the ends of names
272 **	are silently stripped off; this is intentional.  The problem
273 **	is that some versions of sndmsg (like at LBL) set the kill
274 **	character to something other than @ when reading addresses;
275 **	so people type "csvax.eric\@berkeley" -- which screws up the
276 **	berknet mailer.
277 **
278 **	Parameters:
279 **		addr -- the name to chomp.
280 **		delim -- the delimiter for the address, normally
281 **			'\0' or ','; \0 is accepted in any case.
282 **			If '\t' then we are reading the .cf file.
283 **		pvpbuf -- place to put the saved text -- note that
284 **			the pointers are static.
285 **		pvpbsize -- size of pvpbuf.
286 **		delimptr -- if non-NULL, set to the location of the
287 **			terminating delimiter.
288 **
289 **	Returns:
290 **		A pointer to a vector of tokens.
291 **		NULL on error.
292 */
293 
294 /* states and character types */
295 # define OPR		0	/* operator */
296 # define ATM		1	/* atom */
297 # define QST		2	/* in quoted string */
298 # define SPC		3	/* chewing up spaces */
299 # define ONE		4	/* pick up one character */
300 
301 # define NSTATES	5	/* number of states */
302 # define TYPE		017	/* mask to select state type */
303 
304 /* meta bits for table */
305 # define M		020	/* meta character; don't pass through */
306 # define B		040	/* cause a break */
307 # define MB		M|B	/* meta-break */
308 
309 static short StateTab[NSTATES][NSTATES] =
310 {
311    /*	oldst	chtype>	OPR	ATM	QST	SPC	ONE	*/
312 	/*OPR*/		OPR|B,	ATM|B,	QST|B,	SPC|MB,	ONE|B,
313 	/*ATM*/		OPR|B,	ATM,	QST|B,	SPC|MB,	ONE|B,
314 	/*QST*/		QST,	QST,	OPR,	QST,	QST,
315 	/*SPC*/		OPR,	ATM,	QST,	SPC|M,	ONE,
316 	/*ONE*/		OPR,	OPR,	OPR,	OPR,	OPR,
317 };
318 
319 /* token type table -- it gets modified with $o characters */
320 static TokTypeTab[256] =
321 {
322 	ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,SPC,SPC,SPC,SPC,SPC,ATM,ATM,
323 	ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,
324 	SPC,ATM,QST,ATM,ATM,ATM,ATM,ATM,ATM,SPC,ATM,ATM,ATM,ATM,ATM,ATM,
325 	ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,
326 	ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,
327 	ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,
328 	ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,
329 	ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,
330 	OPR,OPR,ONE,OPR,OPR,OPR,OPR,OPR,OPR,OPR,OPR,OPR,OPR,OPR,OPR,OPR,
331 	OPR,OPR,OPR,ONE,ONE,ONE,OPR,OPR,OPR,OPR,OPR,OPR,OPR,OPR,OPR,OPR,
332 	ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,
333 	ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,
334 	ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,
335 	ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,
336 	ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,
337 	ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,ATM,
338 };
339 
340 #define toktype(c)	((int) TokTypeTab[(c) & 0xff])
341 
342 
343 # define NOCHAR		-1	/* signal nothing in lookahead token */
344 
345 char **
346 prescan(addr, delim, pvpbuf, pvpbsize, delimptr)
347 	char *addr;
348 	char delim;
349 	char pvpbuf[];
350 	char **delimptr;
351 {
352 	register char *p;
353 	register char *q;
354 	register int c;
355 	char **avp;
356 	bool bslashmode;
357 	int cmntcnt;
358 	int anglecnt;
359 	char *tok;
360 	int state;
361 	int newstate;
362 	char *saveto = CurEnv->e_to;
363 	static char *av[MAXATOM+1];
364 	static char firsttime = TRUE;
365 	extern int errno;
366 
367 	if (firsttime)
368 	{
369 		/* initialize the token type table */
370 		char obuf[50];
371 
372 		firsttime = FALSE;
373 		expand("\201o", obuf, &obuf[sizeof obuf - sizeof DELIMCHARS], CurEnv);
374 		strcat(obuf, DELIMCHARS);
375 		for (p = obuf; *p != '\0'; p++)
376 		{
377 			if (TokTypeTab[*p & 0xff] == ATM)
378 				TokTypeTab[*p & 0xff] = OPR;
379 		}
380 	}
381 
382 	/* make sure error messages don't have garbage on them */
383 	errno = 0;
384 
385 	q = pvpbuf;
386 	bslashmode = FALSE;
387 	cmntcnt = 0;
388 	anglecnt = 0;
389 	avp = av;
390 	state = ATM;
391 	c = NOCHAR;
392 	p = addr;
393 	CurEnv->e_to = p;
394 	if (tTd(22, 11))
395 	{
396 		printf("prescan: ");
397 		xputs(p);
398 		(void) putchar('\n');
399 	}
400 
401 	do
402 	{
403 		/* read a token */
404 		tok = q;
405 		for (;;)
406 		{
407 			/* store away any old lookahead character */
408 			if (c != NOCHAR && !bslashmode)
409 			{
410 				/* see if there is room */
411 				if (q >= &pvpbuf[pvpbsize - 5])
412 				{
413 					usrerr("553 Address too long");
414 	returnnull:
415 					if (delimptr != NULL)
416 						*delimptr = p;
417 					CurEnv->e_to = saveto;
418 					return (NULL);
419 				}
420 
421 				/* squirrel it away */
422 				*q++ = c;
423 			}
424 
425 			/* read a new input character */
426 			c = *p++;
427 			if (c == '\0')
428 			{
429 				/* diagnose and patch up bad syntax */
430 				if (state == QST)
431 				{
432 					usrerr("653 Unbalanced '\"'");
433 					c = '"';
434 				}
435 				else if (cmntcnt > 0)
436 				{
437 					usrerr("653 Unbalanced '('");
438 					c = ')';
439 				}
440 				else if (anglecnt > 0)
441 				{
442 					c = '>';
443 					usrerr("653 Unbalanced '<'");
444 				}
445 				else
446 					break;
447 
448 				p--;
449 			}
450 			else if (c == delim && anglecnt <= 0 &&
451 					cmntcnt <= 0 && state != QST)
452 				break;
453 
454 			if (tTd(22, 101))
455 				printf("c=%c, s=%d; ", c, state);
456 
457 			/* chew up special characters */
458 			*q = '\0';
459 			if (bslashmode)
460 			{
461 				bslashmode = FALSE;
462 
463 				/* kludge \! for naive users */
464 				if (cmntcnt > 0)
465 				{
466 					c = NOCHAR;
467 					continue;
468 				}
469 				else if (c != '!' || state == QST)
470 				{
471 					*q++ = '\\';
472 					continue;
473 				}
474 			}
475 
476 			if (c == '\\')
477 			{
478 				bslashmode = TRUE;
479 			}
480 			else if (state == QST)
481 			{
482 				/* do nothing, just avoid next clauses */
483 			}
484 			else if (c == '(')
485 			{
486 				cmntcnt++;
487 				c = NOCHAR;
488 			}
489 			else if (c == ')')
490 			{
491 				if (cmntcnt <= 0)
492 				{
493 					usrerr("653 Unbalanced ')'");
494 					c = NOCHAR;
495 				}
496 				else
497 					cmntcnt--;
498 			}
499 			else if (cmntcnt > 0)
500 				c = NOCHAR;
501 			else if (c == '<')
502 				anglecnt++;
503 			else if (c == '>')
504 			{
505 				if (anglecnt <= 0)
506 				{
507 					usrerr("653 Unbalanced '>'");
508 					c = NOCHAR;
509 				}
510 				else
511 					anglecnt--;
512 			}
513 			else if (delim == ' ' && isascii(c) && isspace(c))
514 				c = ' ';
515 
516 			if (c == NOCHAR)
517 				continue;
518 
519 			/* see if this is end of input */
520 			if (c == delim && anglecnt <= 0 && state != QST)
521 				break;
522 
523 			newstate = StateTab[state][toktype(c)];
524 			if (tTd(22, 101))
525 				printf("ns=%02o\n", newstate);
526 			state = newstate & TYPE;
527 			if (bitset(M, newstate))
528 				c = NOCHAR;
529 			if (bitset(B, newstate))
530 				break;
531 		}
532 
533 		/* new token */
534 		if (tok != q)
535 		{
536 			*q++ = '\0';
537 			if (tTd(22, 36))
538 			{
539 				printf("tok=");
540 				xputs(tok);
541 				(void) putchar('\n');
542 			}
543 			if (avp >= &av[MAXATOM])
544 			{
545 				syserr("553 prescan: too many tokens");
546 				goto returnnull;
547 			}
548 			if (q - tok > MAXNAME)
549 			{
550 				syserr("553 prescan: token too long");
551 				goto returnnull;
552 			}
553 			*avp++ = tok;
554 		}
555 	} while (c != '\0' && (c != delim || anglecnt > 0));
556 	*avp = NULL;
557 	p--;
558 	if (delimptr != NULL)
559 		*delimptr = p;
560 	if (tTd(22, 12))
561 	{
562 		printf("prescan==>");
563 		printav(av);
564 	}
565 	CurEnv->e_to = saveto;
566 	if (av[0] == NULL)
567 	{
568 		if (tTd(22, 1))
569 			printf("prescan: null leading token\n");
570 		return (NULL);
571 	}
572 	return (av);
573 }
574 /*
575 **  REWRITE -- apply rewrite rules to token vector.
576 **
577 **	This routine is an ordered production system.  Each rewrite
578 **	rule has a LHS (called the pattern) and a RHS (called the
579 **	rewrite); 'rwr' points the the current rewrite rule.
580 **
581 **	For each rewrite rule, 'avp' points the address vector we
582 **	are trying to match against, and 'pvp' points to the pattern.
583 **	If pvp points to a special match value (MATCHZANY, MATCHANY,
584 **	MATCHONE, MATCHCLASS, MATCHNCLASS) then the address in avp
585 **	matched is saved away in the match vector (pointed to by 'mvp').
586 **
587 **	When a match between avp & pvp does not match, we try to
588 **	back out.  If we back up over MATCHONE, MATCHCLASS, or MATCHNCLASS
589 **	we must also back out the match in mvp.  If we reach a
590 **	MATCHANY or MATCHZANY we just extend the match and start
591 **	over again.
592 **
593 **	When we finally match, we rewrite the address vector
594 **	and try over again.
595 **
596 **	Parameters:
597 **		pvp -- pointer to token vector.
598 **		ruleset -- the ruleset to use for rewriting.
599 **		reclevel -- recursion level (to catch loops).
600 **		e -- the current envelope.
601 **
602 **	Returns:
603 **		A status code.  If EX_TEMPFAIL, higher level code should
604 **			attempt recovery.
605 **
606 **	Side Effects:
607 **		pvp is modified.
608 */
609 
610 struct match
611 {
612 	char	**first;	/* first token matched */
613 	char	**last;		/* last token matched */
614 	char	**pattern;	/* pointer to pattern */
615 };
616 
617 # define MAXMATCH	9	/* max params per rewrite */
618 
619 # ifndef MAXRULERECURSION
620 #  define MAXRULERECURSION	50	/* max recursion depth */
621 # endif
622 
623 
624 int
625 rewrite(pvp, ruleset, reclevel, e)
626 	char **pvp;
627 	int ruleset;
628 	int reclevel;
629 	register ENVELOPE *e;
630 {
631 	register char *ap;		/* address pointer */
632 	register char *rp;		/* rewrite pointer */
633 	register char **avp;		/* address vector pointer */
634 	register char **rvp;		/* rewrite vector pointer */
635 	register struct match *mlp;	/* cur ptr into mlist */
636 	register struct rewrite *rwr;	/* pointer to current rewrite rule */
637 	int ruleno;			/* current rule number */
638 	int rstat = EX_OK;		/* return status */
639 	int loopcount;
640 	struct match mlist[MAXMATCH];	/* stores match on LHS */
641 	char *npvp[MAXATOM+1];		/* temporary space for rebuild */
642 
643 	if (OpMode == MD_TEST || tTd(21, 1))
644 	{
645 		printf("rewrite: ruleset %2d   input:", ruleset);
646 		printav(pvp);
647 	}
648 	if (ruleset < 0 || ruleset >= MAXRWSETS)
649 	{
650 		syserr("554 rewrite: illegal ruleset number %d", ruleset);
651 		return EX_CONFIG;
652 	}
653 	if (reclevel++ > MAXRULERECURSION)
654 	{
655 		syserr("rewrite: infinite recursion, ruleset %d", ruleset);
656 		return EX_CONFIG;
657 	}
658 	if (pvp == NULL)
659 		return EX_USAGE;
660 
661 	/*
662 	**  Run through the list of rewrite rules, applying
663 	**	any that match.
664 	*/
665 
666 	ruleno = 1;
667 	loopcount = 0;
668 	for (rwr = RewriteRules[ruleset]; rwr != NULL; )
669 	{
670 		if (tTd(21, 12))
671 		{
672 			printf("-----trying rule:");
673 			printav(rwr->r_lhs);
674 		}
675 
676 		/* try to match on this rule */
677 		mlp = mlist;
678 		rvp = rwr->r_lhs;
679 		avp = pvp;
680 		if (++loopcount > 100)
681 		{
682 			syserr("554 Infinite loop in ruleset %d, rule %d",
683 				ruleset, ruleno);
684 			if (tTd(21, 1))
685 			{
686 				printf("workspace: ");
687 				printav(pvp);
688 			}
689 			break;
690 		}
691 
692 		while ((ap = *avp) != NULL || *rvp != NULL)
693 		{
694 			rp = *rvp;
695 			if (tTd(21, 35))
696 			{
697 				printf("ADVANCE rp=");
698 				xputs(rp);
699 				printf(", ap=");
700 				xputs(ap);
701 				printf("\n");
702 			}
703 			if (rp == NULL)
704 			{
705 				/* end-of-pattern before end-of-address */
706 				goto backup;
707 			}
708 			if (ap == NULL && (*rp & 0377) != MATCHZANY &&
709 			    (*rp & 0377) != MATCHZERO)
710 			{
711 				/* end-of-input with patterns left */
712 				goto backup;
713 			}
714 
715 			switch (*rp & 0377)
716 			{
717 				register STAB *s;
718 				char buf[MAXLINE];
719 
720 			  case MATCHCLASS:
721 				/* match any phrase in a class */
722 				mlp->pattern = rvp;
723 				mlp->first = avp;
724 	extendclass:
725 				ap = *avp;
726 				if (ap == NULL)
727 					goto backup;
728 				mlp->last = avp++;
729 				cataddr(mlp->first, mlp->last, buf, sizeof buf, '\0');
730 				s = stab(buf, ST_CLASS, ST_FIND);
731 				if (s == NULL || !bitnset(rp[1], s->s_class))
732 				{
733 					if (tTd(21, 36))
734 					{
735 						printf("EXTEND  rp=");
736 						xputs(rp);
737 						printf(", ap=");
738 						xputs(ap);
739 						printf("\n");
740 					}
741 					goto extendclass;
742 				}
743 				if (tTd(21, 36))
744 					printf("CLMATCH\n");
745 				mlp++;
746 				break;
747 
748 			  case MATCHNCLASS:
749 				/* match any token not in a class */
750 				s = stab(ap, ST_CLASS, ST_FIND);
751 				if (s != NULL && bitnset(rp[1], s->s_class))
752 					goto backup;
753 
754 				/* fall through */
755 
756 			  case MATCHONE:
757 			  case MATCHANY:
758 				/* match exactly one token */
759 				mlp->pattern = rvp;
760 				mlp->first = avp;
761 				mlp->last = avp++;
762 				mlp++;
763 				break;
764 
765 			  case MATCHZANY:
766 				/* match zero or more tokens */
767 				mlp->pattern = rvp;
768 				mlp->first = avp;
769 				mlp->last = avp - 1;
770 				mlp++;
771 				break;
772 
773 			  case MATCHZERO:
774 				/* match zero tokens */
775 				break;
776 
777 			  case MACRODEXPAND:
778 				/*
779 				**  Match against run-time macro.
780 				**  This algorithm is broken for the
781 				**  general case (no recursive macros,
782 				**  improper tokenization) but should
783 				**  work for the usual cases.
784 				*/
785 
786 				ap = macvalue(rp[1], e);
787 				mlp->first = avp;
788 				if (tTd(21, 2))
789 					printf("rewrite: LHS $&%c => \"%s\"\n",
790 						rp[1],
791 						ap == NULL ? "(NULL)" : ap);
792 
793 				if (ap == NULL)
794 					break;
795 				while (*ap != '\0')
796 				{
797 					if (*avp == NULL ||
798 					    strncasecmp(ap, *avp, strlen(*avp)) != 0)
799 					{
800 						/* no match */
801 						avp = mlp->first;
802 						goto backup;
803 					}
804 					ap += strlen(*avp++);
805 				}
806 
807 				/* match */
808 				break;
809 
810 			  default:
811 				/* must have exact match */
812 				if (strcasecmp(rp, ap))
813 					goto backup;
814 				avp++;
815 				break;
816 			}
817 
818 			/* successful match on this token */
819 			rvp++;
820 			continue;
821 
822 	  backup:
823 			/* match failed -- back up */
824 			while (--mlp >= mlist)
825 			{
826 				rvp = mlp->pattern;
827 				rp = *rvp;
828 				avp = mlp->last + 1;
829 				ap = *avp;
830 
831 				if (tTd(21, 36))
832 				{
833 					printf("BACKUP  rp=");
834 					xputs(rp);
835 					printf(", ap=");
836 					xputs(ap);
837 					printf("\n");
838 				}
839 
840 				if (ap == NULL)
841 				{
842 					/* run off the end -- back up again */
843 					continue;
844 				}
845 				if ((*rp & 0377) == MATCHANY ||
846 				    (*rp & 0377) == MATCHZANY)
847 				{
848 					/* extend binding and continue */
849 					mlp->last = avp++;
850 					rvp++;
851 					mlp++;
852 					break;
853 				}
854 				if ((*rp & 0377) == MATCHCLASS)
855 				{
856 					/* extend binding and try again */
857 					mlp->last = avp;
858 					goto extendclass;
859 				}
860 			}
861 
862 			if (mlp < mlist)
863 			{
864 				/* total failure to match */
865 				break;
866 			}
867 		}
868 
869 		/*
870 		**  See if we successfully matched
871 		*/
872 
873 		if (mlp < mlist || *rvp != NULL)
874 		{
875 			if (tTd(21, 10))
876 				printf("----- rule fails\n");
877 			rwr = rwr->r_next;
878 			ruleno++;
879 			loopcount = 0;
880 			continue;
881 		}
882 
883 		rvp = rwr->r_rhs;
884 		if (tTd(21, 12))
885 		{
886 			printf("-----rule matches:");
887 			printav(rvp);
888 		}
889 
890 		rp = *rvp;
891 		if ((*rp & 0377) == CANONUSER)
892 		{
893 			rvp++;
894 			rwr = rwr->r_next;
895 			ruleno++;
896 			loopcount = 0;
897 		}
898 		else if ((*rp & 0377) == CANONHOST)
899 		{
900 			rvp++;
901 			rwr = NULL;
902 		}
903 		else if ((*rp & 0377) == CANONNET)
904 			rwr = NULL;
905 
906 		/* substitute */
907 		for (avp = npvp; *rvp != NULL; rvp++)
908 		{
909 			register struct match *m;
910 			register char **pp;
911 
912 			rp = *rvp;
913 			if ((*rp & 0377) == MATCHREPL)
914 			{
915 				/* substitute from LHS */
916 				m = &mlist[rp[1] - '1'];
917 				if (m < mlist || m >= mlp)
918 				{
919 					syserr("554 rewrite: ruleset %d: replacement $%c out of bounds",
920 						ruleset, rp[1]);
921 					return EX_CONFIG;
922 				}
923 				if (tTd(21, 15))
924 				{
925 					printf("$%c:", rp[1]);
926 					pp = m->first;
927 					while (pp <= m->last)
928 					{
929 						printf(" %x=\"", *pp);
930 						(void) fflush(stdout);
931 						printf("%s\"", *pp++);
932 					}
933 					printf("\n");
934 				}
935 				pp = m->first;
936 				while (pp <= m->last)
937 				{
938 					if (avp >= &npvp[MAXATOM])
939 					{
940 						syserr("554 rewrite: expansion too long");
941 						return EX_DATAERR;
942 					}
943 					*avp++ = *pp++;
944 				}
945 			}
946 			else
947 			{
948 				/* vanilla replacement */
949 				if (avp >= &npvp[MAXATOM])
950 				{
951 	toolong:
952 					syserr("554 rewrite: expansion too long");
953 					return EX_DATAERR;
954 				}
955 				if ((*rp & 0377) != MACRODEXPAND)
956 					*avp++ = rp;
957 				else
958 				{
959 					*avp = macvalue(rp[1], e);
960 					if (tTd(21, 2))
961 						printf("rewrite: RHS $&%c => \"%s\"\n",
962 							rp[1],
963 							*avp == NULL ? "(NULL)" : *avp);
964 					if (*avp != NULL)
965 						avp++;
966 				}
967 			}
968 		}
969 		*avp++ = NULL;
970 
971 		/*
972 		**  Check for any hostname/keyword lookups.
973 		*/
974 
975 		for (rvp = npvp; *rvp != NULL; rvp++)
976 		{
977 			char **hbrvp;
978 			char **xpvp;
979 			int trsize;
980 			char *replac;
981 			int endtoken;
982 			STAB *map;
983 			char *mapname;
984 			char **key_rvp;
985 			char **arg_rvp;
986 			char **default_rvp;
987 			char buf[MAXNAME + 1];
988 			char *pvpb1[MAXATOM + 1];
989 			char *argvect[10];
990 			char pvpbuf[PSBUFSIZE];
991 			char *nullpvp[1];
992 
993 			if ((**rvp & 0377) != HOSTBEGIN &&
994 			    (**rvp & 0377) != LOOKUPBEGIN)
995 				continue;
996 
997 			/*
998 			**  Got a hostname/keyword lookup.
999 			**
1000 			**	This could be optimized fairly easily.
1001 			*/
1002 
1003 			hbrvp = rvp;
1004 			if ((**rvp & 0377) == HOSTBEGIN)
1005 			{
1006 				endtoken = HOSTEND;
1007 				mapname = "host";
1008 			}
1009 			else
1010 			{
1011 				endtoken = LOOKUPEND;
1012 				mapname = *++rvp;
1013 			}
1014 			map = stab(mapname, ST_MAP, ST_FIND);
1015 			if (map == NULL)
1016 				syserr("554 rewrite: map %s not found", mapname);
1017 
1018 			/* extract the match part */
1019 			key_rvp = ++rvp;
1020 			default_rvp = NULL;
1021 			arg_rvp = argvect;
1022 			xpvp = NULL;
1023 			replac = pvpbuf;
1024 			while (*rvp != NULL && (**rvp & 0377) != endtoken)
1025 			{
1026 				int nodetype = **rvp & 0377;
1027 
1028 				if (nodetype != CANONHOST && nodetype != CANONUSER)
1029 				{
1030 					rvp++;
1031 					continue;
1032 				}
1033 
1034 				*rvp++ = NULL;
1035 
1036 				if (xpvp != NULL)
1037 				{
1038 					cataddr(xpvp, NULL, replac,
1039 						&pvpbuf[sizeof pvpbuf] - replac,
1040 						'\0');
1041 					*++arg_rvp = replac;
1042 					replac += strlen(replac) + 1;
1043 					xpvp = NULL;
1044 				}
1045 				switch (nodetype)
1046 				{
1047 				  case CANONHOST:
1048 					xpvp = rvp;
1049 					break;
1050 
1051 				  case CANONUSER:
1052 					default_rvp = rvp;
1053 					break;
1054 				}
1055 			}
1056 			if (*rvp != NULL)
1057 				*rvp++ = NULL;
1058 			if (xpvp != NULL)
1059 			{
1060 				cataddr(xpvp, NULL, replac,
1061 					&pvpbuf[sizeof pvpbuf] - replac,
1062 					'\0');
1063 				*++arg_rvp = replac;
1064 			}
1065 			*++arg_rvp = NULL;
1066 
1067 			/* save the remainder of the input string */
1068 			trsize = (int) (avp - rvp + 1) * sizeof *rvp;
1069 			bcopy((char *) rvp, (char *) pvpb1, trsize);
1070 
1071 			/* look it up */
1072 			cataddr(key_rvp, NULL, buf, sizeof buf, '\0');
1073 			argvect[0] = buf;
1074 			if (map != NULL && bitset(MF_OPEN, map->s_map.map_mflags))
1075 			{
1076 				auto int stat = EX_OK;
1077 
1078 				/* XXX should try to auto-open the map here */
1079 
1080 				if (tTd(60, 1))
1081 					printf("map_lookup(%s, %s) => ",
1082 						mapname, buf);
1083 				replac = (*map->s_map.map_class->map_lookup)(&map->s_map,
1084 						buf, argvect, &stat);
1085 				if (tTd(60, 1))
1086 					printf("%s (%d)\n",
1087 						replac ? replac : "NOT FOUND",
1088 						stat);
1089 
1090 				/* should recover if stat == EX_TEMPFAIL */
1091 				if (stat == EX_TEMPFAIL)
1092 					rstat = stat;
1093 			}
1094 			else
1095 				replac = NULL;
1096 
1097 			/* if no replacement, use default */
1098 			if (replac == NULL && default_rvp != NULL)
1099 			{
1100 				/* create the default */
1101 				cataddr(default_rvp, NULL, buf, sizeof buf, '\0');
1102 				replac = buf;
1103 			}
1104 
1105 			if (replac == NULL)
1106 			{
1107 				xpvp = key_rvp;
1108 			}
1109 			else if (*replac == '\0')
1110 			{
1111 				/* null replacement */
1112 				nullpvp[0] = NULL;
1113 				xpvp = nullpvp;
1114 			}
1115 			else
1116 			{
1117 				/* scan the new replacement */
1118 				xpvp = prescan(replac, '\0', pvpbuf,
1119 					       sizeof pvpbuf, NULL);
1120 				if (xpvp == NULL)
1121 				{
1122 					/* prescan already printed error */
1123 					return EX_DATAERR;
1124 				}
1125 			}
1126 
1127 			/* append it to the token list */
1128 			for (avp = hbrvp; *xpvp != NULL; xpvp++)
1129 			{
1130 				*avp++ = newstr(*xpvp);
1131 				if (avp >= &npvp[MAXATOM])
1132 					goto toolong;
1133 			}
1134 
1135 			/* restore the old trailing information */
1136 			for (xpvp = pvpb1; (*avp++ = *xpvp++) != NULL; )
1137 				if (avp >= &npvp[MAXATOM])
1138 					goto toolong;
1139 
1140 			break;
1141 		}
1142 
1143 		/*
1144 		**  Check for subroutine calls.
1145 		*/
1146 
1147 		if (*npvp != NULL && (**npvp & 0377) == CALLSUBR)
1148 		{
1149 			int stat;
1150 
1151 			if (npvp[1] == NULL)
1152 			{
1153 				syserr("parseaddr: NULL subroutine call in ruleset %d, rule %d",
1154 					ruleset, ruleno);
1155 				*pvp = NULL;
1156 			}
1157 			else
1158 			{
1159 				bcopy((char *) &npvp[2], (char *) pvp,
1160 					(int) (avp - npvp - 2) * sizeof *avp);
1161 				if (tTd(21, 3))
1162 					printf("-----callsubr %s\n", npvp[1]);
1163 				stat = rewrite(pvp, atoi(npvp[1]), reclevel, e);
1164 				if (rstat == EX_OK || stat == EX_TEMPFAIL)
1165 					rstat = stat;
1166 				if (*pvp != NULL && (**pvp & 0377) == CANONNET)
1167 				rwr = NULL;
1168 			}
1169 		}
1170 		else
1171 		{
1172 			bcopy((char *) npvp, (char *) pvp,
1173 				(int) (avp - npvp) * sizeof *avp);
1174 		}
1175 		if (tTd(21, 4))
1176 		{
1177 			printf("rewritten as:");
1178 			printav(pvp);
1179 		}
1180 	}
1181 
1182 	if (OpMode == MD_TEST || tTd(21, 1))
1183 	{
1184 		printf("rewrite: ruleset %2d returns:", ruleset);
1185 		printav(pvp);
1186 	}
1187 
1188 	return rstat;
1189 }
1190 /*
1191 **  BUILDADDR -- build address from token vector.
1192 **
1193 **	Parameters:
1194 **		tv -- token vector.
1195 **		a -- pointer to address descriptor to fill.
1196 **			If NULL, one will be allocated.
1197 **		flags -- info regarding whether this is a sender or
1198 **			a recipient.
1199 **		e -- the current envelope.
1200 **
1201 **	Returns:
1202 **		NULL if there was an error.
1203 **		'a' otherwise.
1204 **
1205 **	Side Effects:
1206 **		fills in 'a'
1207 */
1208 
1209 struct errcodes
1210 {
1211 	char	*ec_name;		/* name of error code */
1212 	int	ec_code;		/* numeric code */
1213 } ErrorCodes[] =
1214 {
1215 	"usage",	EX_USAGE,
1216 	"nouser",	EX_NOUSER,
1217 	"nohost",	EX_NOHOST,
1218 	"unavailable",	EX_UNAVAILABLE,
1219 	"software",	EX_SOFTWARE,
1220 	"tempfail",	EX_TEMPFAIL,
1221 	"protocol",	EX_PROTOCOL,
1222 #ifdef EX_CONFIG
1223 	"config",	EX_CONFIG,
1224 #endif
1225 	NULL,		EX_UNAVAILABLE,
1226 };
1227 
1228 ADDRESS *
1229 buildaddr(tv, a, flags, e)
1230 	register char **tv;
1231 	register ADDRESS *a;
1232 	int flags;
1233 	register ENVELOPE *e;
1234 {
1235 	struct mailer **mp;
1236 	register struct mailer *m;
1237 	char *bp;
1238 	int spaceleft;
1239 	static MAILER errormailer;
1240 	static char *errorargv[] = { "ERROR", NULL };
1241 	static char buf[MAXNAME];
1242 
1243 	if (tTd(24, 5))
1244 	{
1245 		printf("buildaddr, flags=%x, tv=", flags);
1246 		printav(tv);
1247 	}
1248 
1249 	if (a == NULL)
1250 		a = (ADDRESS *) xalloc(sizeof *a);
1251 	bzero((char *) a, sizeof *a);
1252 
1253 	/* figure out what net/mailer to use */
1254 	if (*tv == NULL || (**tv & 0377) != CANONNET)
1255 	{
1256 		syserr("554 buildaddr: no net");
1257 badaddr:
1258 		a->q_flags |= QBADADDR;
1259 		a->q_mailer = &errormailer;
1260 		if (errormailer.m_name == NULL)
1261 		{
1262 			/* initialize the bogus mailer */
1263 			errormailer.m_name = "*error*";
1264 			errormailer.m_mailer = "ERROR";
1265 			errormailer.m_argv = errorargv;
1266 		}
1267 		return a;
1268 	}
1269 	tv++;
1270 	if (strcasecmp(*tv, "error") == 0)
1271 	{
1272 		if ((**++tv & 0377) == CANONHOST)
1273 		{
1274 			register struct errcodes *ep;
1275 
1276 			if (isascii(**++tv) && isdigit(**tv))
1277 			{
1278 				setstat(atoi(*tv));
1279 			}
1280 			else
1281 			{
1282 				for (ep = ErrorCodes; ep->ec_name != NULL; ep++)
1283 					if (strcasecmp(ep->ec_name, *tv) == 0)
1284 						break;
1285 				setstat(ep->ec_code);
1286 			}
1287 			tv++;
1288 		}
1289 		else
1290 			setstat(EX_UNAVAILABLE);
1291 		if ((**tv & 0377) != CANONUSER)
1292 			syserr("554 buildaddr: error: no user");
1293 		cataddr(++tv, NULL, buf, sizeof buf, ' ');
1294 		stripquotes(buf);
1295 		if (isascii(buf[0]) && isdigit(buf[0]) &&
1296 		    isascii(buf[1]) && isdigit(buf[1]) &&
1297 		    isascii(buf[2]) && isdigit(buf[2]) &&
1298 		    buf[3] == ' ')
1299 		{
1300 			char fmt[10];
1301 
1302 			strncpy(fmt, buf, 3);
1303 			strcpy(&fmt[3], " %s");
1304 			usrerr(fmt, buf + 4);
1305 
1306 			/*
1307 			**  If this is a 4xx code and we aren't running
1308 			**  SMTP on our input, bounce this message;
1309 			**  otherwise it disappears without a trace.
1310 			*/
1311 
1312 			if (fmt[0] == '4' && OpMode != MD_SMTP &&
1313 			    OpMode != MD_DAEMON)
1314 			{
1315 				e->e_flags |= EF_FATALERRS;
1316 			}
1317 		}
1318 		else
1319 		{
1320 			usrerr("553 %s", buf);
1321 		}
1322 		goto badaddr;
1323 	}
1324 
1325 	for (mp = Mailer; (m = *mp++) != NULL; )
1326 	{
1327 		if (strcasecmp(m->m_name, *tv) == 0)
1328 			break;
1329 	}
1330 	if (m == NULL)
1331 	{
1332 		syserr("554 buildaddr: unknown mailer %s", *tv);
1333 		goto badaddr;
1334 	}
1335 	a->q_mailer = m;
1336 
1337 	/* figure out what host (if any) */
1338 	tv++;
1339 	if ((**tv & 0377) == CANONHOST)
1340 	{
1341 		bp = buf;
1342 		spaceleft = sizeof buf - 1;
1343 		while (*++tv != NULL && (**tv & 0377) != CANONUSER)
1344 		{
1345 			int i = strlen(*tv);
1346 
1347 			if (i > spaceleft)
1348 			{
1349 				/* out of space for this address */
1350 				if (spaceleft >= 0)
1351 					syserr("554 buildaddr: host too long (%.40s...)",
1352 						buf);
1353 				i = spaceleft;
1354 				spaceleft = 0;
1355 			}
1356 			if (i <= 0)
1357 				continue;
1358 			bcopy(*tv, bp, i);
1359 			bp += i;
1360 			spaceleft -= i;
1361 		}
1362 		*bp = '\0';
1363 		a->q_host = newstr(buf);
1364 	}
1365 	else
1366 	{
1367 		if (!bitnset(M_LOCALMAILER, m->m_flags))
1368 		{
1369 			syserr("554 buildaddr: no host");
1370 			goto badaddr;
1371 		}
1372 		a->q_host = NULL;
1373 	}
1374 
1375 	/* figure out the user */
1376 	if (*tv == NULL || (**tv & 0377) != CANONUSER)
1377 	{
1378 		syserr("554 buildaddr: no user");
1379 		goto badaddr;
1380 	}
1381 	tv++;
1382 
1383 	/* do special mapping for local mailer */
1384 	if (*tv != NULL)
1385 	{
1386 		register char *p = *tv;
1387 
1388 		if (*p == '"')
1389 			p++;
1390 		if (*p == '|' && bitnset(M_CHECKPROG, m->m_flags))
1391 			a->q_mailer = m = ProgMailer;
1392 		else if (*p == '/' && bitnset(M_CHECKFILE, m->m_flags))
1393 			a->q_mailer = m = FileMailer;
1394 		else if (*p == ':' && bitnset(M_CHECKINCLUDE, m->m_flags))
1395 		{
1396 			/* may be :include: */
1397 			cataddr(tv, NULL, buf, sizeof buf, '\0');
1398 			stripquotes(buf);
1399 			if (strncasecmp(buf, ":include:", 9) == 0)
1400 			{
1401 				/* if :include:, don't need further rewriting */
1402 				a->q_mailer = m = InclMailer;
1403 				a->q_user = &buf[9];
1404 				return (a);
1405 			}
1406 		}
1407 	}
1408 
1409 	if (bitnset(M_CHECKUDB, m->m_flags) && *tv != NULL &&
1410 	    strcmp(*tv, "@") == 0)
1411 	{
1412 		tv++;
1413 		a->q_flags |= QNOTREMOTE;
1414 	}
1415 
1416 	/* rewrite according recipient mailer rewriting rules */
1417 	define('h', a->q_host, e);
1418 	if (!bitset(RF_SENDERADDR|RF_HEADERADDR, flags))
1419 	{
1420 		/* sender addresses done later */
1421 		(void) rewrite(tv, 2, 0, e);
1422 		if (m->m_re_rwset > 0)
1423 		       (void) rewrite(tv, m->m_re_rwset, 0, e);
1424 	}
1425 	(void) rewrite(tv, 4, 0, e);
1426 
1427 	/* save the result for the command line/RCPT argument */
1428 	cataddr(tv, NULL, buf, sizeof buf, '\0');
1429 	a->q_user = buf;
1430 
1431 	/*
1432 	**  Do mapping to lower case as requested by mailer
1433 	*/
1434 
1435 	if (a->q_host != NULL && !bitnset(M_HST_UPPER, m->m_flags))
1436 		makelower(a->q_host);
1437 	if (!bitnset(M_USR_UPPER, m->m_flags))
1438 		makelower(a->q_user);
1439 
1440 	return (a);
1441 }
1442 /*
1443 **  CATADDR -- concatenate pieces of addresses (putting in <LWSP> subs)
1444 **
1445 **	Parameters:
1446 **		pvp -- parameter vector to rebuild.
1447 **		evp -- last parameter to include.  Can be NULL to
1448 **			use entire pvp.
1449 **		buf -- buffer to build the string into.
1450 **		sz -- size of buf.
1451 **		spacesub -- the space separator character; if null,
1452 **			use SpaceSub.
1453 **
1454 **	Returns:
1455 **		none.
1456 **
1457 **	Side Effects:
1458 **		Destroys buf.
1459 */
1460 
1461 cataddr(pvp, evp, buf, sz, spacesub)
1462 	char **pvp;
1463 	char **evp;
1464 	char *buf;
1465 	register int sz;
1466 	char spacesub;
1467 {
1468 	bool oatomtok = FALSE;
1469 	bool natomtok = FALSE;
1470 	register int i;
1471 	register char *p;
1472 
1473 	if (spacesub == '\0')
1474 		spacesub = SpaceSub;
1475 
1476 	if (pvp == NULL)
1477 	{
1478 		(void) strcpy(buf, "");
1479 		return;
1480 	}
1481 	p = buf;
1482 	sz -= 2;
1483 	while (*pvp != NULL && (i = strlen(*pvp)) < sz)
1484 	{
1485 		natomtok = (toktype(**pvp) == ATM);
1486 		if (oatomtok && natomtok)
1487 			*p++ = spacesub;
1488 		(void) strcpy(p, *pvp);
1489 		oatomtok = natomtok;
1490 		p += i;
1491 		sz -= i + 1;
1492 		if (pvp++ == evp)
1493 			break;
1494 	}
1495 	*p = '\0';
1496 }
1497 /*
1498 **  SAMEADDR -- Determine if two addresses are the same
1499 **
1500 **	This is not just a straight comparison -- if the mailer doesn't
1501 **	care about the host we just ignore it, etc.
1502 **
1503 **	Parameters:
1504 **		a, b -- pointers to the internal forms to compare.
1505 **
1506 **	Returns:
1507 **		TRUE -- they represent the same mailbox.
1508 **		FALSE -- they don't.
1509 **
1510 **	Side Effects:
1511 **		none.
1512 */
1513 
1514 bool
1515 sameaddr(a, b)
1516 	register ADDRESS *a;
1517 	register ADDRESS *b;
1518 {
1519 	register ADDRESS *ca, *cb;
1520 
1521 	/* if they don't have the same mailer, forget it */
1522 	if (a->q_mailer != b->q_mailer)
1523 		return (FALSE);
1524 
1525 	/* if the user isn't the same, we can drop out */
1526 	if (strcmp(a->q_user, b->q_user) != 0)
1527 		return (FALSE);
1528 
1529 	/* if we have good uids for both but they differ, these are different */
1530 	if (a->q_mailer == ProgMailer)
1531 	{
1532 		ca = getctladdr(a);
1533 		cb = getctladdr(b);
1534 		if (ca != NULL && cb != NULL &&
1535 		    bitset(QGOODUID, ca->q_flags & cb->q_flags) &&
1536 		    ca->q_uid != cb->q_uid)
1537 			return (FALSE);
1538 	}
1539 
1540 	/* otherwise compare hosts (but be careful for NULL ptrs) */
1541 	if (a->q_host == b->q_host)
1542 	{
1543 		/* probably both null pointers */
1544 		return (TRUE);
1545 	}
1546 	if (a->q_host == NULL || b->q_host == NULL)
1547 	{
1548 		/* only one is a null pointer */
1549 		return (FALSE);
1550 	}
1551 	if (strcmp(a->q_host, b->q_host) != 0)
1552 		return (FALSE);
1553 
1554 	return (TRUE);
1555 }
1556 /*
1557 **  PRINTADDR -- print address (for debugging)
1558 **
1559 **	Parameters:
1560 **		a -- the address to print
1561 **		follow -- follow the q_next chain.
1562 **
1563 **	Returns:
1564 **		none.
1565 **
1566 **	Side Effects:
1567 **		none.
1568 */
1569 
1570 printaddr(a, follow)
1571 	register ADDRESS *a;
1572 	bool follow;
1573 {
1574 	bool first = TRUE;
1575 	register MAILER *m;
1576 	MAILER pseudomailer;
1577 
1578 	while (a != NULL)
1579 	{
1580 		first = FALSE;
1581 		printf("%x=", a);
1582 		(void) fflush(stdout);
1583 
1584 		/* find the mailer -- carefully */
1585 		m = a->q_mailer;
1586 		if (m == NULL)
1587 		{
1588 			m = &pseudomailer;
1589 			m->m_mno = -1;
1590 			m->m_name = "NULL";
1591 		}
1592 
1593 		printf("%s:\n\tmailer %d (%s), host `%s', user `%s', ruser `%s'\n",
1594 		       a->q_paddr, m->m_mno, m->m_name,
1595 		       a->q_host == NULL ? "<null>" : a->q_host, a->q_user,
1596 		       a->q_ruser == NULL ? "<null>" : a->q_ruser);
1597 		printf("\tnext=%x, flags=%x, alias %x, uid %d, gid %d\n",
1598 		       a->q_next, a->q_flags, a->q_alias, a->q_uid, a->q_gid);
1599 		printf("\towner=%s, home=\"%s\", fullname=\"%s\"\n",
1600 		       a->q_owner == NULL ? "(none)" : a->q_owner,
1601 		       a->q_home == NULL ? "(none)" : a->q_home,
1602 		       a->q_fullname == NULL ? "(none)" : a->q_fullname);
1603 
1604 		if (!follow)
1605 			return;
1606 		a = a->q_next;
1607 	}
1608 	if (first)
1609 		printf("[NULL]\n");
1610 }
1611 
1612 /*
1613 **  REMOTENAME -- return the name relative to the current mailer
1614 **
1615 **	Parameters:
1616 **		name -- the name to translate.
1617 **		m -- the mailer that we want to do rewriting relative
1618 **			to.
1619 **		flags -- fine tune operations.
1620 **		pstat -- pointer to status word.
1621 **		e -- the current envelope.
1622 **
1623 **	Returns:
1624 **		the text string representing this address relative to
1625 **			the receiving mailer.
1626 **
1627 **	Side Effects:
1628 **		none.
1629 **
1630 **	Warnings:
1631 **		The text string returned is tucked away locally;
1632 **			copy it if you intend to save it.
1633 */
1634 
1635 char *
1636 remotename(name, m, flags, pstat, e)
1637 	char *name;
1638 	struct mailer *m;
1639 	int flags;
1640 	int *pstat;
1641 	register ENVELOPE *e;
1642 {
1643 	register char **pvp;
1644 	char *fancy;
1645 	char *oldg = macvalue('g', e);
1646 	int rwset;
1647 	static char buf[MAXNAME];
1648 	char lbuf[MAXNAME];
1649 	char pvpbuf[PSBUFSIZE];
1650 	extern char *crackaddr();
1651 
1652 	if (tTd(12, 1))
1653 		printf("remotename(%s)\n", name);
1654 
1655 	/* don't do anything if we are tagging it as special */
1656 	if (bitset(RF_SENDERADDR, flags))
1657 		rwset = bitset(RF_HEADERADDR, flags) ? m->m_sh_rwset
1658 						     : m->m_se_rwset;
1659 	else
1660 		rwset = bitset(RF_HEADERADDR, flags) ? m->m_rh_rwset
1661 						     : m->m_re_rwset;
1662 	if (rwset < 0)
1663 		return (name);
1664 
1665 	/*
1666 	**  Do a heuristic crack of this name to extract any comment info.
1667 	**	This will leave the name as a comment and a $g macro.
1668 	*/
1669 
1670 	if (bitset(RF_CANONICAL, flags) || bitnset(M_NOCOMMENT, m->m_flags))
1671 		fancy = "\201g";
1672 	else
1673 		fancy = crackaddr(name);
1674 
1675 	/*
1676 	**  Turn the name into canonical form.
1677 	**	Normally this will be RFC 822 style, i.e., "user@domain".
1678 	**	If this only resolves to "user", and the "C" flag is
1679 	**	specified in the sending mailer, then the sender's
1680 	**	domain will be appended.
1681 	*/
1682 
1683 	pvp = prescan(name, '\0', pvpbuf, sizeof pvpbuf, NULL);
1684 	if (pvp == NULL)
1685 		return (name);
1686 	if (rewrite(pvp, 3, 0, e) == EX_TEMPFAIL)
1687 		*pstat = EX_TEMPFAIL;
1688 	if (bitset(RF_ADDDOMAIN, flags) && e->e_fromdomain != NULL)
1689 	{
1690 		/* append from domain to this address */
1691 		register char **pxp = pvp;
1692 
1693 		/* see if there is an "@domain" in the current name */
1694 		while (*pxp != NULL && strcmp(*pxp, "@") != 0)
1695 			pxp++;
1696 		if (*pxp == NULL)
1697 		{
1698 			/* no.... append the "@domain" from the sender */
1699 			register char **qxq = e->e_fromdomain;
1700 
1701 			while ((*pxp++ = *qxq++) != NULL)
1702 				continue;
1703 			if (rewrite(pvp, 3, 0, e) == EX_TEMPFAIL)
1704 				*pstat = EX_TEMPFAIL;
1705 		}
1706 	}
1707 
1708 	/*
1709 	**  Do more specific rewriting.
1710 	**	Rewrite using ruleset 1 or 2 depending on whether this is
1711 	**		a sender address or not.
1712 	**	Then run it through any receiving-mailer-specific rulesets.
1713 	*/
1714 
1715 	if (bitset(RF_SENDERADDR, flags))
1716 	{
1717 		if (rewrite(pvp, 1, 0, e) == EX_TEMPFAIL)
1718 			*pstat = EX_TEMPFAIL;
1719 	}
1720 	else
1721 	{
1722 		if (rewrite(pvp, 2, 0, e) == EX_TEMPFAIL)
1723 			*pstat = EX_TEMPFAIL;
1724 	}
1725 	if (rwset > 0)
1726 	{
1727 		if (rewrite(pvp, rwset, 0, e) == EX_TEMPFAIL)
1728 			*pstat = EX_TEMPFAIL;
1729 	}
1730 
1731 	/*
1732 	**  Do any final sanitation the address may require.
1733 	**	This will normally be used to turn internal forms
1734 	**	(e.g., user@host.LOCAL) into external form.  This
1735 	**	may be used as a default to the above rules.
1736 	*/
1737 
1738 	if (rewrite(pvp, 4, 0, e) == EX_TEMPFAIL)
1739 		*pstat = EX_TEMPFAIL;
1740 
1741 	/*
1742 	**  Now restore the comment information we had at the beginning.
1743 	*/
1744 
1745 	cataddr(pvp, NULL, lbuf, sizeof lbuf, '\0');
1746 	define('g', lbuf, e);
1747 
1748 	/* need to make sure route-addrs have <angle brackets> */
1749 	if (bitset(RF_CANONICAL, flags) && lbuf[0] == '@')
1750 		expand("<\201g>", buf, &buf[sizeof buf - 1], e);
1751 	else
1752 		expand(fancy, buf, &buf[sizeof buf - 1], e);
1753 
1754 	define('g', oldg, e);
1755 
1756 	if (tTd(12, 1))
1757 		printf("remotename => `%s'\n", buf);
1758 	return (buf);
1759 }
1760 /*
1761 **  MAPLOCALUSER -- run local username through ruleset 5 for final redirection
1762 **
1763 **	Parameters:
1764 **		a -- the address to map (but just the user name part).
1765 **		sendq -- the sendq in which to install any replacement
1766 **			addresses.
1767 **
1768 **	Returns:
1769 **		none.
1770 */
1771 
1772 maplocaluser(a, sendq, e)
1773 	register ADDRESS *a;
1774 	ADDRESS **sendq;
1775 	ENVELOPE *e;
1776 {
1777 	register char **pvp;
1778 	register ADDRESS *a1 = NULL;
1779 	auto char *delimptr;
1780 	char pvpbuf[PSBUFSIZE];
1781 
1782 	if (tTd(29, 1))
1783 	{
1784 		printf("maplocaluser: ");
1785 		printaddr(a, FALSE);
1786 	}
1787 	pvp = prescan(a->q_user, '\0', pvpbuf, sizeof pvpbuf, &delimptr);
1788 	if (pvp == NULL)
1789 		return;
1790 
1791 	(void) rewrite(pvp, 5, 0, e);
1792 	if (pvp[0] == NULL || (pvp[0][0] & 0377) != CANONNET)
1793 		return;
1794 
1795 	/* if non-null, mailer destination specified -- has it changed? */
1796 	a1 = buildaddr(pvp, NULL, 0, e);
1797 	if (a1 == NULL || sameaddr(a, a1))
1798 		return;
1799 
1800 	/* mark old address as dead; insert new address */
1801 	a->q_flags |= QDONTSEND;
1802 	if (tTd(29, 5))
1803 	{
1804 		printf("maplocaluser: QDONTSEND ");
1805 		printaddr(a, FALSE);
1806 	}
1807 	a1->q_alias = a;
1808 	allocaddr(a1, RF_COPYALL, NULL);
1809 	(void) recipient(a1, sendq, e);
1810 }
1811 /*
1812 **  DEQUOTE_INIT -- initialize dequote map
1813 **
1814 **	This is a no-op.
1815 **
1816 **	Parameters:
1817 **		map -- the internal map structure.
1818 **		args -- arguments.
1819 **
1820 **	Returns:
1821 **		TRUE.
1822 */
1823 
1824 bool
1825 dequote_init(map, args)
1826 	MAP *map;
1827 	char *args;
1828 {
1829 	register char *p = args;
1830 
1831 	for (;;)
1832 	{
1833 		while (isascii(*p) && isspace(*p))
1834 			p++;
1835 		if (*p != '-')
1836 			break;
1837 		switch (*++p)
1838 		{
1839 		  case 'a':
1840 			map->map_app = ++p;
1841 			break;
1842 
1843 		  case 's':
1844 			map->map_coldelim = *++p;
1845 			break;
1846 		}
1847 		while (*p != '\0' && !(isascii(*p) && isspace(*p)))
1848 			p++;
1849 		if (*p != '\0')
1850 			*p = '\0';
1851 	}
1852 	if (map->map_app != NULL)
1853 		map->map_app = newstr(map->map_app);
1854 
1855 	return TRUE;
1856 }
1857 /*
1858 **  DEQUOTE_MAP -- unquote an address
1859 **
1860 **	Parameters:
1861 **		map -- the internal map structure (ignored).
1862 **		name -- the name to dequote.
1863 **		av -- arguments (ignored).
1864 **		statp -- pointer to status out-parameter.
1865 **
1866 **	Returns:
1867 **		NULL -- if there were no quotes, or if the resulting
1868 **			unquoted buffer would not be acceptable to prescan.
1869 **		else -- The dequoted buffer.
1870 */
1871 
1872 char *
1873 dequote_map(map, name, av, statp)
1874 	MAP *map;
1875 	char *name;
1876 	char **av;
1877 	int *statp;
1878 {
1879 	register char *p;
1880 	register char *q;
1881 	register char c;
1882 	int anglecnt = 0;
1883 	int cmntcnt = 0;
1884 	int quotecnt = 0;
1885 	int spacecnt = 0;
1886 	bool quotemode = FALSE;
1887 	bool bslashmode = FALSE;
1888 	char spacesub = map->map_coldelim;
1889 
1890 	for (p = q = name; (c = *p++) != '\0'; )
1891 	{
1892 		if (bslashmode)
1893 		{
1894 			bslashmode = FALSE;
1895 			*q++ = c;
1896 			continue;
1897 		}
1898 
1899 		if (c == ' ' && spacesub != '\0')
1900 			c = spacesub;
1901 
1902 		switch (c)
1903 		{
1904 		  case '\\':
1905 			bslashmode = TRUE;
1906 			break;
1907 
1908 		  case '(':
1909 			cmntcnt++;
1910 			break;
1911 
1912 		  case ')':
1913 			if (cmntcnt-- <= 0)
1914 				return NULL;
1915 			break;
1916 
1917 		  case ' ':
1918 			spacecnt++;
1919 			break;
1920 		}
1921 
1922 		if (cmntcnt > 0)
1923 		{
1924 			*q++ = c;
1925 			continue;
1926 		}
1927 
1928 		switch (c)
1929 		{
1930 		  case '"':
1931 			quotemode = !quotemode;
1932 			quotecnt++;
1933 			continue;
1934 
1935 		  case '<':
1936 			anglecnt++;
1937 			break;
1938 
1939 		  case '>':
1940 			if (anglecnt-- <= 0)
1941 				return NULL;
1942 			break;
1943 		}
1944 		*q++ = c;
1945 	}
1946 
1947 	if (anglecnt != 0 || cmntcnt != 0 || bslashmode ||
1948 	    quotemode || quotecnt <= 0 || spacecnt != 0)
1949 		return NULL;
1950 	*q++ = '\0';
1951 	return name;
1952 }
1953