1 /*
2  * Copyright (c) 1983 Eric P. Allman
3  * Copyright (c) 1988 Regents of the University of California.
4  * All rights reserved.
5  *
6  * %sccs.include.redist.c%
7  */
8 
9 #ifndef lint
10 static char sccsid[] = "@(#)recipient.c	5.20 (Berkeley) 07/26/91";
11 #endif /* not lint */
12 
13 # include <sys/types.h>
14 # include <sys/stat.h>
15 # include <pwd.h>
16 # include "sendmail.h"
17 
18 /*
19 **  SENDTOLIST -- Designate a send list.
20 **
21 **	The parameter is a comma-separated list of people to send to.
22 **	This routine arranges to send to all of them.
23 **
24 **	Parameters:
25 **		list -- the send list.
26 **		ctladdr -- the address template for the person to
27 **			send to -- effective uid/gid are important.
28 **			This is typically the alias that caused this
29 **			expansion.
30 **		sendq -- a pointer to the head of a queue to put
31 **			these people into.
32 **
33 **	Returns:
34 **		none
35 **
36 **	Side Effects:
37 **		none.
38 */
39 
40 # define MAXRCRSN	10
41 
42 sendtolist(list, ctladdr, sendq)
43 	char *list;
44 	ADDRESS *ctladdr;
45 	ADDRESS **sendq;
46 {
47 	register char *p;
48 	register ADDRESS *al;	/* list of addresses to send to */
49 	bool firstone;		/* set on first address sent */
50 	bool selfref;		/* set if this list includes ctladdr */
51 	char delimiter;		/* the address delimiter */
52 
53 	if (tTd(25, 1))
54 	{
55 		printf("sendto: %s\n   ctladdr=", list);
56 		printaddr(ctladdr, FALSE);
57 	}
58 
59 	/* heuristic to determine old versus new style addresses */
60 	if (ctladdr == NULL &&
61 	    (index(list, ',') != NULL || index(list, ';') != NULL ||
62 	     index(list, '<') != NULL || index(list, '(') != NULL))
63 		CurEnv->e_flags &= ~EF_OLDSTYLE;
64 	delimiter = ' ';
65 	if (!bitset(EF_OLDSTYLE, CurEnv->e_flags) || ctladdr != NULL)
66 		delimiter = ',';
67 
68 	firstone = TRUE;
69 	selfref = FALSE;
70 	al = NULL;
71 
72 	for (p = list; *p != '\0'; )
73 	{
74 		register ADDRESS *a;
75 		extern char *DelimChar;		/* defined in prescan */
76 
77 		/* parse the address */
78 		while (isspace(*p) || *p == ',')
79 			p++;
80 		a = parseaddr(p, (ADDRESS *) NULL, 1, delimiter);
81 		p = DelimChar;
82 		if (a == NULL)
83 			continue;
84 		a->q_next = al;
85 		a->q_alias = ctladdr;
86 
87 		/* see if this should be marked as a primary address */
88 		if (ctladdr == NULL ||
89 		    (firstone && *p == '\0' && bitset(QPRIMARY, ctladdr->q_flags)))
90 			a->q_flags |= QPRIMARY;
91 
92 		/* put on send queue or suppress self-reference */
93 		if (ctladdr != NULL && sameaddr(ctladdr, a))
94 			selfref = TRUE;
95 		else
96 			al = a;
97 		firstone = FALSE;
98 	}
99 
100 	/* if this alias doesn't include itself, delete ctladdr */
101 	if (!selfref && ctladdr != NULL)
102 		ctladdr->q_flags |= QDONTSEND;
103 
104 	/* arrange to send to everyone on the local send list */
105 	while (al != NULL)
106 	{
107 		register ADDRESS *a = al;
108 		extern ADDRESS *recipient();
109 
110 		al = a->q_next;
111 		setctladdr(a);
112 		a = recipient(a, sendq);
113 
114 		/* arrange to inherit full name */
115 		if (a->q_fullname == NULL && ctladdr != NULL)
116 			a->q_fullname = ctladdr->q_fullname;
117 	}
118 
119 	CurEnv->e_to = NULL;
120 }
121 /*
122 **  RECIPIENT -- Designate a message recipient
123 **
124 **	Saves the named person for future mailing.
125 **
126 **	Parameters:
127 **		a -- the (preparsed) address header for the recipient.
128 **		sendq -- a pointer to the head of a queue to put the
129 **			recipient in.  Duplicate supression is done
130 **			in this queue.
131 **
132 **	Returns:
133 **		The actual address in the queue.  This will be "a" if
134 **		the address is not a duplicate, else the original address.
135 **
136 **	Side Effects:
137 **		none.
138 */
139 
140 extern ADDRESS *getctladdr();
141 
142 ADDRESS *
143 recipient(a, sendq)
144 	register ADDRESS *a;
145 	register ADDRESS **sendq;
146 {
147 	register ADDRESS *q;
148 	ADDRESS **pq;
149 	register struct mailer *m;
150 	register char *p;
151 	bool quoted = FALSE;		/* set if the addr has a quote bit */
152 	char buf[MAXNAME];		/* unquoted image of the user name */
153 	extern bool safefile();
154 
155 	CurEnv->e_to = a->q_paddr;
156 	m = a->q_mailer;
157 	errno = 0;
158 	if (tTd(26, 1))
159 	{
160 		printf("\nrecipient: ");
161 		printaddr(a, FALSE);
162 	}
163 
164 	/* break aliasing loops */
165 	if (AliasLevel > MAXRCRSN)
166 	{
167 		usrerr("aliasing/forwarding loop broken");
168 		return (a);
169 	}
170 
171 	/*
172 	**  Finish setting up address structure.
173 	*/
174 
175 	/* set the queue timeout */
176 	a->q_timeout = TimeOut;
177 
178 	/* map user & host to lower case if requested on non-aliases */
179 	if (a->q_alias == NULL)
180 		loweraddr(a);
181 
182 	/* get unquoted user for file, program or user.name check */
183 	(void) strcpy(buf, a->q_user);
184 	for (p = buf; *p != '\0' && !quoted; p++)
185 	{
186 		if (!isascii(*p) && (*p & 0377) != (SpaceSub & 0377))
187 			quoted = TRUE;
188 	}
189 	stripquotes(buf, TRUE);
190 
191 	/* do sickly crude mapping for program mailing, etc. */
192 	if (m == LocalMailer && buf[0] == '|')
193 	{
194 		a->q_mailer = m = ProgMailer;
195 		a->q_user++;
196 		if (a->q_alias == NULL && !QueueRun && !ForceMail)
197 		{
198 			a->q_flags |= QDONTSEND|QBADADDR;
199 			usrerr("Cannot mail directly to programs");
200 		}
201 	}
202 
203 	/*
204 	**  Look up this person in the recipient list.
205 	**	If they are there already, return, otherwise continue.
206 	**	If the list is empty, just add it.  Notice the cute
207 	**	hack to make from addresses suppress things correctly:
208 	**	the QDONTSEND bit will be set in the send list.
209 	**	[Please note: the emphasis is on "hack."]
210 	*/
211 
212 	for (pq = sendq; (q = *pq) != NULL; pq = &q->q_next)
213 	{
214 		if (!ForceMail && sameaddr(q, a))
215 		{
216 			if (tTd(26, 1))
217 			{
218 				printf("%s in sendq: ", a->q_paddr);
219 				printaddr(q, FALSE);
220 			}
221 			if (!bitset(QDONTSEND, a->q_flags))
222 				message(Arpa_Info, "duplicate suppressed");
223 			if (!bitset(QPRIMARY, q->q_flags))
224 				q->q_flags |= a->q_flags;
225 			return (q);
226 		}
227 	}
228 
229 	/* add address on list */
230 	*pq = a;
231 	a->q_next = NULL;
232 	CurEnv->e_nrcpts++;
233 
234 	/*
235 	**  Alias the name and handle :include: specs.
236 	*/
237 
238 	if (m == LocalMailer && !bitset(QDONTSEND, a->q_flags))
239 	{
240 		if (strncmp(a->q_user, ":include:", 9) == 0)
241 		{
242 			a->q_flags |= QDONTSEND;
243 			if (a->q_alias == NULL && !QueueRun && !ForceMail)
244 			{
245 				a->q_flags |= QBADADDR;
246 				usrerr("Cannot mail directly to :include:s");
247 			}
248 			else
249 			{
250 				message(Arpa_Info, "including file %s", &a->q_user[9]);
251 				include(&a->q_user[9], " sending", a, sendq);
252 			}
253 		}
254 		else
255 		{
256 			/* try aliasing */
257 			alias(a, sendq);
258 
259 # ifdef USERDB
260 			/* if not  aliased, look it up in the user database */
261 			if (!bitset(QDONTSEND, a->q_flags))
262 				udbexpand(a, sendq);
263 # endif
264 		}
265 	}
266 
267 	/*
268 	**  If the user is local and still being sent, verify that
269 	**  the address is good.  If it is, try to forward.
270 	**  If the address is already good, we have a forwarding
271 	**  loop.  This can be broken by just sending directly to
272 	**  the user (which is probably correct anyway).
273 	*/
274 
275 	if (!bitset(QDONTSEND, a->q_flags) && m == LocalMailer)
276 	{
277 		struct stat stb;
278 		extern bool writable();
279 
280 		/* see if this is to a file */
281 		if (buf[0] == '/')
282 		{
283 			p = rindex(buf, '/');
284 			/* check if writable or creatable */
285 			if (a->q_alias == NULL && !QueueRun && !ForceMail)
286 			{
287 				a->q_flags |= QDONTSEND|QBADADDR;
288 				usrerr("Cannot mail directly to files");
289 			}
290 			else if ((stat(buf, &stb) >= 0) ? (!writable(&stb)) :
291 			    (*p = '\0', !safefile(buf, getruid(), S_IWRITE|S_IEXEC)))
292 			{
293 				a->q_flags |= QBADADDR;
294 				giveresponse(EX_CANTCREAT, m, CurEnv);
295 			}
296 		}
297 		else
298 		{
299 			register struct passwd *pw;
300 			extern struct passwd *finduser();
301 
302 			/* warning -- finduser may trash buf */
303 			pw = finduser(buf);
304 			if (pw == NULL)
305 			{
306 				a->q_flags |= QBADADDR;
307 				giveresponse(EX_NOUSER, m, CurEnv);
308 			}
309 			else
310 			{
311 				char nbuf[MAXNAME];
312 
313 				if (strcmp(a->q_user, pw->pw_name) != 0)
314 				{
315 					a->q_user = newstr(pw->pw_name);
316 					(void) strcpy(buf, pw->pw_name);
317 				}
318 				a->q_home = newstr(pw->pw_dir);
319 				a->q_uid = pw->pw_uid;
320 				a->q_gid = pw->pw_gid;
321 				a->q_flags |= QGOODUID;
322 				buildfname(pw->pw_gecos, pw->pw_name, nbuf);
323 				if (nbuf[0] != '\0')
324 					a->q_fullname = newstr(nbuf);
325 				if (!quoted)
326 					forward(a, sendq);
327 			}
328 		}
329 	}
330 	return (a);
331 }
332 /*
333 **  FINDUSER -- find the password entry for a user.
334 **
335 **	This looks a lot like getpwnam, except that it may want to
336 **	do some fancier pattern matching in /etc/passwd.
337 **
338 **	This routine contains most of the time of many sendmail runs.
339 **	It deserves to be optimized.
340 **
341 **	Parameters:
342 **		name -- the name to match against.
343 **
344 **	Returns:
345 **		A pointer to a pw struct.
346 **		NULL if name is unknown or ambiguous.
347 **
348 **	Side Effects:
349 **		may modify name.
350 */
351 
352 struct passwd *
353 finduser(name)
354 	char *name;
355 {
356 	register struct passwd *pw;
357 	register char *p;
358 	extern struct passwd *getpwent();
359 	extern struct passwd *getpwnam();
360 
361 	/* map upper => lower case */
362 	for (p = name; *p != '\0'; p++)
363 	{
364 		if (isascii(*p) && isupper(*p))
365 			*p = tolower(*p);
366 	}
367 
368 	/* look up this login name using fast path */
369 	if ((pw = getpwnam(name)) != NULL)
370 		return (pw);
371 
372 	/* search for a matching full name instead */
373 	for (p = name; *p != '\0'; p++)
374 	{
375 		if (*p == (SpaceSub & 0177) || *p == '_')
376 			*p = ' ';
377 	}
378 	(void) setpwent();
379 	while ((pw = getpwent()) != NULL)
380 	{
381 		char buf[MAXNAME];
382 
383 		buildfname(pw->pw_gecos, pw->pw_name, buf);
384 		if (index(buf, ' ') != NULL && !strcasecmp(buf, name))
385 		{
386 			message(Arpa_Info, "sending to login name %s", pw->pw_name);
387 			return (pw);
388 		}
389 	}
390 	return (NULL);
391 }
392 /*
393 **  WRITABLE -- predicate returning if the file is writable.
394 **
395 **	This routine must duplicate the algorithm in sys/fio.c.
396 **	Unfortunately, we cannot use the access call since we
397 **	won't necessarily be the real uid when we try to
398 **	actually open the file.
399 **
400 **	Notice that ANY file with ANY execute bit is automatically
401 **	not writable.  This is also enforced by mailfile.
402 **
403 **	Parameters:
404 **		s -- pointer to a stat struct for the file.
405 **
406 **	Returns:
407 **		TRUE -- if we will be able to write this file.
408 **		FALSE -- if we cannot write this file.
409 **
410 **	Side Effects:
411 **		none.
412 */
413 
414 bool
415 writable(s)
416 	register struct stat *s;
417 {
418 	int euid, egid;
419 	int bits;
420 
421 	if (bitset(0111, s->st_mode))
422 		return (FALSE);
423 	euid = getruid();
424 	egid = getrgid();
425 	if (geteuid() == 0)
426 	{
427 		if (bitset(S_ISUID, s->st_mode))
428 			euid = s->st_uid;
429 		if (bitset(S_ISGID, s->st_mode))
430 			egid = s->st_gid;
431 	}
432 
433 	if (euid == 0)
434 		return (TRUE);
435 	bits = S_IWRITE;
436 	if (euid != s->st_uid)
437 	{
438 		bits >>= 3;
439 		if (egid != s->st_gid)
440 			bits >>= 3;
441 	}
442 	return ((s->st_mode & bits) != 0);
443 }
444 /*
445 **  INCLUDE -- handle :include: specification.
446 **
447 **	Parameters:
448 **		fname -- filename to include.
449 **		msg -- message to print in verbose mode.
450 **		ctladdr -- address template to use to fill in these
451 **			addresses -- effective user/group id are
452 **			the important things.
453 **		sendq -- a pointer to the head of the send queue
454 **			to put these addresses in.
455 **
456 **	Returns:
457 **		none.
458 **
459 **	Side Effects:
460 **		reads the :include: file and sends to everyone
461 **		listed in that file.
462 */
463 
464 include(fname, msg, ctladdr, sendq)
465 	char *fname;
466 	char *msg;
467 	ADDRESS *ctladdr;
468 	ADDRESS **sendq;
469 {
470 	char buf[MAXLINE];
471 	register FILE *fp;
472 	char *oldto = CurEnv->e_to;
473 	char *oldfilename = FileName;
474 	int oldlinenumber = LineNumber;
475 
476 	fp = fopen(fname, "r");
477 	if (fp == NULL)
478 	{
479 		usrerr("Cannot open %s", fname);
480 		return;
481 	}
482 	if (getctladdr(ctladdr) == NULL)
483 	{
484 		struct stat st;
485 
486 		if (fstat(fileno(fp), &st) < 0)
487 			syserr("Cannot fstat %s!", fname);
488 		ctladdr->q_uid = st.st_uid;
489 		ctladdr->q_gid = st.st_gid;
490 		ctladdr->q_flags |= QGOODUID;
491 	}
492 
493 	/* read the file -- each line is a comma-separated list. */
494 	FileName = fname;
495 	LineNumber = 0;
496 	while (fgets(buf, sizeof buf, fp) != NULL)
497 	{
498 		register char *p = index(buf, '\n');
499 
500 		LineNumber++;
501 		if (p != NULL)
502 			*p = '\0';
503 		if (buf[0] == '\0')
504 			continue;
505 		CurEnv->e_to = oldto;
506 		message(Arpa_Info, "%s to %s", msg, buf);
507 		AliasLevel++;
508 		sendtolist(buf, ctladdr, sendq);
509 		AliasLevel--;
510 	}
511 
512 	(void) fclose(fp);
513 	FileName = oldfilename;
514 	LineNumber = oldlinenumber;
515 }
516 /*
517 **  SENDTOARGV -- send to an argument vector.
518 **
519 **	Parameters:
520 **		argv -- argument vector to send to.
521 **
522 **	Returns:
523 **		none.
524 **
525 **	Side Effects:
526 **		puts all addresses on the argument vector onto the
527 **			send queue.
528 */
529 
530 sendtoargv(argv)
531 	register char **argv;
532 {
533 	register char *p;
534 
535 	while ((p = *argv++) != NULL)
536 	{
537 		if (argv[0] != NULL && argv[1] != NULL && !strcasecmp(argv[0], "at"))
538 		{
539 			char nbuf[MAXNAME];
540 
541 			if (strlen(p) + strlen(argv[1]) + 2 > sizeof nbuf)
542 				usrerr("address overflow");
543 			else
544 			{
545 				(void) strcpy(nbuf, p);
546 				(void) strcat(nbuf, "@");
547 				(void) strcat(nbuf, argv[1]);
548 				p = newstr(nbuf);
549 				argv += 2;
550 			}
551 		}
552 		sendtolist(p, (ADDRESS *) NULL, &CurEnv->e_sendqueue);
553 	}
554 }
555 /*
556 **  GETCTLADDR -- get controlling address from an address header.
557 **
558 **	If none, get one corresponding to the effective userid.
559 **
560 **	Parameters:
561 **		a -- the address to find the controller of.
562 **
563 **	Returns:
564 **		the controlling address.
565 **
566 **	Side Effects:
567 **		none.
568 */
569 
570 ADDRESS *
571 getctladdr(a)
572 	register ADDRESS *a;
573 {
574 	while (a != NULL && !bitset(QGOODUID, a->q_flags))
575 		a = a->q_alias;
576 	return (a);
577 }
578