Home | History | Annotate | Line # | Download | only in mail
names.c revision 1.25.4.1
      1  1.25.4.1      matt /*	$NetBSD: names.c,v 1.25.4.1 2007/11/06 23:35:56 matt Exp $	*/
      2       1.5  christos 
      3       1.1       cgd /*
      4       1.3   deraadt  * Copyright (c) 1980, 1993
      5       1.3   deraadt  *	The Regents of the University of California.  All rights reserved.
      6       1.1       cgd  *
      7       1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8       1.1       cgd  * modification, are permitted provided that the following conditions
      9       1.1       cgd  * are met:
     10       1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11       1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12       1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14       1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15      1.17       agc  * 3. Neither the name of the University nor the names of its contributors
     16       1.1       cgd  *    may be used to endorse or promote products derived from this software
     17       1.1       cgd  *    without specific prior written permission.
     18       1.1       cgd  *
     19       1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20       1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21       1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22       1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23       1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24       1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25       1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26       1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27       1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28       1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29       1.1       cgd  * SUCH DAMAGE.
     30       1.1       cgd  */
     31       1.1       cgd 
     32       1.6     lukem #include <sys/cdefs.h>
     33       1.1       cgd #ifndef lint
     34       1.5  christos #if 0
     35       1.5  christos static char sccsid[] = "@(#)names.c	8.1 (Berkeley) 6/6/93";
     36       1.5  christos #else
     37  1.25.4.1      matt __RCSID("$NetBSD: names.c,v 1.25.4.1 2007/11/06 23:35:56 matt Exp $");
     38       1.5  christos #endif
     39       1.1       cgd #endif /* not lint */
     40       1.1       cgd 
     41       1.1       cgd /*
     42       1.1       cgd  * Mail -- a mail program
     43       1.1       cgd  *
     44       1.1       cgd  * Handle name lists.
     45       1.1       cgd  */
     46       1.1       cgd 
     47       1.1       cgd #include "rcv.h"
     48       1.3   deraadt #include "extern.h"
     49       1.1       cgd 
     50       1.1       cgd /*
     51       1.1       cgd  * Allocate a single element of a name list,
     52       1.1       cgd  * initialize its name field to the passed
     53       1.1       cgd  * name and return it.
     54       1.1       cgd  */
     55      1.24  christos PUBLIC struct name *
     56      1.10       wiz nalloc(char str[], int ntype)
     57       1.1       cgd {
     58       1.6     lukem 	struct name *np;
     59       1.1       cgd 
     60  1.25.4.1      matt 	np = salloc(sizeof(*np));
     61      1.13       wiz 	np->n_flink = NULL;
     62      1.13       wiz 	np->n_blink = NULL;
     63       1.1       cgd 	np->n_type = ntype;
     64       1.1       cgd 	np->n_name = savestr(str);
     65      1.24  christos 	return np;
     66       1.1       cgd }
     67       1.1       cgd 
     68       1.1       cgd /*
     69       1.1       cgd  * Find the tail of a list and return it.
     70       1.1       cgd  */
     71      1.24  christos static struct name *
     72      1.10       wiz tailof(struct name *name)
     73       1.1       cgd {
     74       1.6     lukem 	struct name *np;
     75       1.1       cgd 
     76       1.1       cgd 	np = name;
     77      1.13       wiz 	if (np == NULL)
     78      1.24  christos 		return NULL;
     79      1.13       wiz 	while (np->n_flink != NULL)
     80       1.1       cgd 		np = np->n_flink;
     81      1.24  christos 	return np;
     82      1.24  christos }
     83      1.24  christos 
     84      1.24  christos /*
     85      1.24  christos  * Grab a single word (liberal word)
     86      1.24  christos  * Throw away things between ()'s, and take anything between <>.
     87      1.24  christos  */
     88      1.24  christos static char *
     89      1.24  christos yankword(char *ap, char wbuf[])
     90      1.24  christos {
     91      1.24  christos 	char *cp, *cp2;
     92      1.24  christos 
     93      1.24  christos 	cp = ap;
     94      1.24  christos 	for (;;) {
     95      1.24  christos 		if (*cp == '\0')
     96      1.24  christos 			return NULL;
     97      1.24  christos 		if (*cp == '(') {
     98      1.24  christos 			int nesting = 0;
     99      1.24  christos 
    100      1.24  christos 			while (*cp != '\0') {
    101      1.24  christos 				switch (*cp++) {
    102      1.24  christos 				case '(':
    103      1.24  christos 					nesting++;
    104      1.24  christos 					break;
    105      1.24  christos 				case ')':
    106      1.24  christos 					--nesting;
    107      1.24  christos 					break;
    108      1.24  christos 				}
    109      1.24  christos 				if (nesting <= 0)
    110      1.24  christos 					break;
    111      1.24  christos 			}
    112  1.25.4.1      matt 		} else if (is_WSP(*cp) || *cp == ',')
    113      1.24  christos 			cp++;
    114      1.24  christos 		else
    115      1.24  christos 			break;
    116      1.24  christos 	}
    117      1.24  christos 	if (*cp ==  '<')
    118      1.24  christos 		for (cp2 = wbuf; *cp && (*cp2++ = *cp++) != '>'; /*EMPTY*/)
    119      1.24  christos 			continue;
    120      1.24  christos 	else
    121      1.24  christos 		for (cp2 = wbuf; *cp && !strchr(" \t,(", *cp); *cp2++ = *cp++)
    122      1.24  christos 			continue;
    123      1.24  christos 	*cp2 = '\0';
    124      1.24  christos 	return cp;
    125       1.1       cgd }
    126       1.1       cgd 
    127       1.1       cgd /*
    128       1.1       cgd  * Extract a list of names from a line,
    129       1.1       cgd  * and make a list of names from it.
    130      1.13       wiz  * Return the list or NULL if none found.
    131       1.1       cgd  */
    132      1.24  christos PUBLIC struct name *
    133      1.10       wiz extract(char line[], int ntype)
    134       1.1       cgd {
    135       1.6     lukem 	char *cp;
    136      1.11       wiz 	struct name *begin, *np, *t;
    137      1.24  christos 	char nbuf[LINESIZE];
    138       1.1       cgd 
    139      1.12       wiz 	if (line == NULL || *line == '\0')
    140      1.13       wiz 		return NULL;
    141      1.13       wiz 	begin = NULL;
    142      1.13       wiz 	np = NULL;
    143       1.1       cgd 	cp = line;
    144      1.12       wiz 	while ((cp = yankword(cp, nbuf)) != NULL) {
    145       1.1       cgd 		t = nalloc(nbuf, ntype);
    146      1.13       wiz 		if (begin == NULL)
    147      1.11       wiz 			begin = t;
    148       1.1       cgd 		else
    149       1.1       cgd 			np->n_flink = t;
    150       1.1       cgd 		t->n_blink = np;
    151       1.1       cgd 		np = t;
    152       1.1       cgd 	}
    153      1.11       wiz 	return begin;
    154       1.1       cgd }
    155       1.1       cgd 
    156      1.21  christos /* XXX - is this really sufficient? */
    157      1.21  christos static int need_quotes(char *str)
    158      1.21  christos {
    159  1.25.4.1      matt 	return strpbrk(str, " \t") != NULL;
    160      1.21  christos }
    161      1.21  christos 
    162       1.1       cgd /*
    163       1.1       cgd  * Turn a list of names into a string of the same names.
    164       1.1       cgd  */
    165      1.24  christos PUBLIC char *
    166      1.10       wiz detract(struct name *np, int ntype)
    167       1.1       cgd {
    168      1.19  christos 	size_t s;
    169      1.11       wiz 	char *cp, *begin;
    170       1.6     lukem 	struct name *p;
    171       1.6     lukem 	int comma;
    172      1.21  christos 	int quote;
    173       1.1       cgd 
    174      1.21  christos 	quote = ntype & GSMOPTS;
    175       1.1       cgd 	comma = ntype & GCOMMA;
    176      1.13       wiz 	if (np == NULL)
    177      1.24  christos 		return NULL;
    178       1.1       cgd 	ntype &= ~GCOMMA;
    179       1.1       cgd 	s = 0;
    180       1.1       cgd 	if (debug && comma)
    181      1.19  christos 		(void)fprintf(stderr, "detract asked to insert commas\n");
    182      1.13       wiz 	for (p = np; p != NULL; p = p->n_flink) {
    183       1.1       cgd 		if (ntype && (p->n_type & GMASK) != ntype)
    184       1.1       cgd 			continue;
    185       1.1       cgd 		s += strlen(p->n_name) + 1;
    186       1.1       cgd 		if (comma)
    187       1.1       cgd 			s++;
    188      1.21  christos 		if (quote && need_quotes(p->n_name))
    189      1.21  christos 			s += 2;
    190       1.1       cgd 	}
    191       1.1       cgd 	if (s == 0)
    192      1.24  christos 		return NULL;
    193       1.1       cgd 	s += 2;
    194      1.11       wiz 	begin = salloc(s);
    195      1.11       wiz 	cp = begin;
    196      1.13       wiz 	for (p = np; p != NULL; p = p->n_flink) {
    197      1.21  christos 		int do_quotes;
    198       1.1       cgd 		if (ntype && (p->n_type & GMASK) != ntype)
    199       1.1       cgd 			continue;
    200      1.21  christos 		do_quotes = (quote && need_quotes(p->n_name));
    201      1.21  christos 		if (do_quotes)
    202      1.21  christos 			*cp++ = '"';
    203       1.1       cgd 		cp = copy(p->n_name, cp);
    204      1.13       wiz 		if (comma && p->n_flink != NULL)
    205       1.1       cgd 			*cp++ = ',';
    206      1.21  christos 		if (do_quotes)
    207      1.21  christos 			*cp++ = '"';
    208       1.1       cgd 		*cp++ = ' ';
    209       1.1       cgd 	}
    210       1.1       cgd 	*--cp = 0;
    211       1.1       cgd 	if (comma && *--cp == ',')
    212       1.1       cgd 		*cp = 0;
    213      1.24  christos 	return begin;
    214       1.1       cgd }
    215       1.1       cgd 
    216       1.1       cgd /*
    217      1.24  christos  * Determine if the passed address is a local "send to file" address.
    218      1.24  christos  * If any of the network metacharacters precedes any slashes, it can't
    219      1.24  christos  * be a filename.  We cheat with .'s to allow path names like ./...
    220       1.1       cgd  */
    221      1.24  christos static int
    222      1.24  christos isfileaddr(char *name)
    223       1.1       cgd {
    224      1.24  christos 	char *cp;
    225       1.1       cgd 
    226      1.24  christos 	if (*name == '+')
    227      1.24  christos 		return 1;
    228      1.24  christos 	for (cp = name; *cp; cp++) {
    229      1.24  christos 		if (*cp == '!' || *cp == '%' || *cp == '@')
    230      1.24  christos 			return 0;
    231      1.24  christos 		if (*cp == '/')
    232      1.24  christos 			return 1;
    233       1.1       cgd 	}
    234      1.24  christos 	return 0;
    235       1.1       cgd }
    236       1.1       cgd 
    237       1.1       cgd /*
    238       1.1       cgd  * For each recipient in the passed name list with a /
    239       1.1       cgd  * in the name, append the message to the end of the named file
    240       1.1       cgd  * and remove him from the recipient list.
    241       1.1       cgd  *
    242       1.1       cgd  * Recipients whose name begins with | are piped through the given
    243       1.1       cgd  * program and removed.
    244       1.1       cgd  */
    245      1.24  christos PUBLIC struct name *
    246      1.10       wiz outof(struct name *names, FILE *fo, struct header *hp)
    247       1.1       cgd {
    248      1.16       wiz 	int c, fd;
    249      1.11       wiz 	struct name *np, *begin;
    250       1.5  christos 	time_t now;
    251      1.18  christos 	char *date;
    252      1.18  christos 	const char *fname;
    253       1.1       cgd 	FILE *fout, *fin;
    254       1.1       cgd 	int ispipe;
    255      1.16       wiz 	char tempname[PATHSIZE];
    256       1.1       cgd 
    257      1.11       wiz 	begin = names;
    258       1.1       cgd 	np = names;
    259      1.14       wiz 	(void)time(&now);
    260       1.1       cgd 	date = ctime(&now);
    261      1.13       wiz 	while (np != NULL) {
    262       1.1       cgd 		if (!isfileaddr(np->n_name) && np->n_name[0] != '|') {
    263       1.1       cgd 			np = np->n_flink;
    264       1.1       cgd 			continue;
    265       1.1       cgd 		}
    266       1.1       cgd 		ispipe = np->n_name[0] == '|';
    267       1.1       cgd 		if (ispipe)
    268       1.1       cgd 			fname = np->n_name+1;
    269       1.1       cgd 		else
    270       1.1       cgd 			fname = expand(np->n_name);
    271       1.1       cgd 
    272       1.1       cgd 		/*
    273       1.1       cgd 		 * See if we have copied the complete message out yet.
    274       1.1       cgd 		 * If not, do so.
    275       1.1       cgd 		 */
    276       1.1       cgd 
    277       1.1       cgd 		if (image < 0) {
    278      1.16       wiz 			(void)snprintf(tempname, sizeof(tempname),
    279      1.16       wiz 			    "%s/mail.ReXXXXXXXXXXXX", tmpdir);
    280      1.16       wiz 			if ((fd = mkstemp(tempname)) == -1 ||
    281      1.16       wiz 			    (fout = Fdopen(fd, "a")) == NULL) {
    282      1.16       wiz 				if (fd != -1)
    283      1.19  christos 					(void)close(fd);
    284      1.16       wiz 				warn("%s", tempname);
    285       1.1       cgd 				senderr++;
    286       1.1       cgd 				goto cant;
    287       1.1       cgd 			}
    288      1.25  christos 			image = open(tempname, O_RDWR);
    289      1.16       wiz 			(void)unlink(tempname);
    290       1.1       cgd 			if (image < 0) {
    291      1.16       wiz 				warn("%s", tempname);
    292       1.1       cgd 				senderr++;
    293      1.14       wiz 				(void)Fclose(fout);
    294       1.1       cgd 				goto cant;
    295       1.1       cgd 			}
    296      1.22  christos 			(void)fcntl(image, F_SETFD, FD_CLOEXEC);
    297      1.19  christos 			(void)fprintf(fout, "From %s %s", myname, date);
    298      1.22  christos #ifdef MIME_SUPPORT
    299      1.24  christos 			(void)puthead(hp, fout, GTO|GSUBJECT|GCC|GMISC|GMIME|GNL);
    300      1.22  christos #else
    301      1.24  christos 			(void)puthead(hp, fout, GTO|GSUBJECT|GCC|GMISC|GNL);
    302      1.22  christos #endif
    303       1.1       cgd 			while ((c = getc(fo)) != EOF)
    304      1.14       wiz 				(void)putc(c, fout);
    305       1.1       cgd 			rewind(fo);
    306      1.14       wiz 			(void)putc('\n', fout);
    307      1.14       wiz 			(void)fflush(fout);
    308       1.7       bad 			if (ferror(fout)) {
    309      1.16       wiz 				warn("%s", tempname);
    310       1.7       bad 				senderr++;
    311      1.14       wiz 				(void)Fclose(fout);
    312       1.7       bad 				goto cant;
    313       1.7       bad 			}
    314      1.14       wiz 			(void)Fclose(fout);
    315       1.1       cgd 		}
    316       1.1       cgd 
    317       1.1       cgd 		/*
    318       1.1       cgd 		 * Now either copy "image" to the desired file
    319       1.1       cgd 		 * or give it as the standard input to the desired
    320       1.1       cgd 		 * program as appropriate.
    321       1.1       cgd 		 */
    322       1.1       cgd 
    323       1.1       cgd 		if (ispipe) {
    324       1.1       cgd 			int pid;
    325      1.18  christos 			const char *shellcmd;
    326       1.5  christos 			sigset_t nset;
    327       1.1       cgd 
    328       1.1       cgd 			/*
    329       1.1       cgd 			 * XXX
    330       1.1       cgd 			 * We can't really reuse the same image file,
    331       1.1       cgd 			 * because multiple piped recipients will
    332       1.1       cgd 			 * share the same lseek location and trample
    333       1.1       cgd 			 * on one another.
    334       1.1       cgd 			 */
    335      1.24  christos 			if ((shellcmd = value(ENAME_SHELL)) == NULL)
    336      1.11       wiz 				shellcmd = _PATH_CSHELL;
    337      1.19  christos 			(void)sigemptyset(&nset);
    338      1.19  christos 			(void)sigaddset(&nset, SIGHUP);
    339      1.19  christos 			(void)sigaddset(&nset, SIGINT);
    340      1.19  christos 			(void)sigaddset(&nset, SIGQUIT);
    341      1.11       wiz 			pid = start_command(shellcmd, &nset,
    342      1.12       wiz 				image, -1, "-c", fname, NULL);
    343       1.1       cgd 			if (pid < 0) {
    344       1.1       cgd 				senderr++;
    345       1.1       cgd 				goto cant;
    346       1.1       cgd 			}
    347       1.1       cgd 			free_child(pid);
    348       1.1       cgd 		} else {
    349       1.1       cgd 			int f;
    350       1.1       cgd 			if ((fout = Fopen(fname, "a")) == NULL) {
    351      1.15       wiz 				warn("%s", fname);
    352       1.1       cgd 				senderr++;
    353       1.1       cgd 				goto cant;
    354       1.1       cgd 			}
    355       1.1       cgd 			if ((f = dup(image)) < 0) {
    356      1.15       wiz 				warn("dup");
    357       1.1       cgd 				fin = NULL;
    358       1.1       cgd 			} else
    359       1.1       cgd 				fin = Fdopen(f, "r");
    360       1.1       cgd 			if (fin == NULL) {
    361      1.19  christos 				(void)fprintf(stderr, "Can't reopen image\n");
    362      1.14       wiz 				(void)Fclose(fout);
    363       1.1       cgd 				senderr++;
    364       1.1       cgd 				goto cant;
    365       1.1       cgd 			}
    366       1.1       cgd 			rewind(fin);
    367       1.1       cgd 			while ((c = getc(fin)) != EOF)
    368      1.14       wiz 				(void)putc(c, fout);
    369       1.7       bad 			if (ferror(fout)) {
    370      1.15       wiz 				warn("%s", fname);
    371       1.7       bad 				senderr++;
    372      1.14       wiz 				(void)Fclose(fout);
    373      1.14       wiz 				(void)Fclose(fin);
    374       1.7       bad 				goto cant;
    375       1.7       bad 			}
    376      1.14       wiz 			(void)Fclose(fout);
    377      1.14       wiz 			(void)Fclose(fin);
    378       1.1       cgd 		}
    379       1.1       cgd cant:
    380       1.1       cgd 		/*
    381       1.1       cgd 		 * In days of old we removed the entry from the
    382       1.1       cgd 		 * the list; now for sake of header expansion
    383       1.1       cgd 		 * we leave it in and mark it as deleted.
    384       1.1       cgd 		 */
    385       1.1       cgd 		np->n_type |= GDEL;
    386       1.1       cgd 		np = np->n_flink;
    387       1.1       cgd 	}
    388       1.1       cgd 	if (image >= 0) {
    389      1.14       wiz 		(void)close(image);
    390       1.1       cgd 		image = -1;
    391       1.1       cgd 	}
    392      1.24  christos 	return begin;
    393       1.1       cgd }
    394       1.1       cgd 
    395       1.1       cgd /*
    396      1.24  christos  * Put another node onto a list of names and return
    397      1.24  christos  * the list.
    398       1.1       cgd  */
    399      1.24  christos static struct name *
    400      1.24  christos put(struct name *list, struct name *node)
    401       1.1       cgd {
    402      1.24  christos 	node->n_flink = list;
    403      1.24  christos 	node->n_blink = NULL;
    404      1.24  christos 	if (list != NULL)
    405      1.24  christos 		list->n_blink = node;
    406      1.24  christos 	return node;
    407       1.1       cgd }
    408       1.1       cgd 
    409       1.1       cgd /*
    410       1.1       cgd  * Recursively expand a group name.  We limit the expansion to some
    411       1.1       cgd  * fixed level to keep things from going haywire.
    412       1.1       cgd  * Direct recursion is not expanded for convenience.
    413       1.1       cgd  */
    414      1.24  christos PUBLIC struct name *
    415      1.10       wiz gexpand(struct name *nlist, struct grouphead *gh, int metoo, int ntype)
    416       1.1       cgd {
    417       1.1       cgd 	struct group *gp;
    418       1.1       cgd 	struct grouphead *ngh;
    419       1.1       cgd 	struct name *np;
    420       1.1       cgd 	static int depth;
    421       1.1       cgd 	char *cp;
    422       1.1       cgd 
    423       1.1       cgd 	if (depth > MAXEXP) {
    424      1.19  christos 		(void)printf("Expanding alias to depth larger than %d\n", MAXEXP);
    425      1.24  christos 		return nlist;
    426       1.1       cgd 	}
    427       1.1       cgd 	depth++;
    428      1.13       wiz 	for (gp = gh->g_list; gp != NULL; gp = gp->ge_link) {
    429       1.1       cgd 		cp = gp->ge_name;
    430       1.1       cgd 		if (*cp == '\\')
    431       1.1       cgd 			goto quote;
    432       1.1       cgd 		if (strcmp(cp, gh->g_name) == 0)
    433       1.1       cgd 			goto quote;
    434      1.13       wiz 		if ((ngh = findgroup(cp)) != NULL) {
    435       1.1       cgd 			nlist = gexpand(nlist, ngh, metoo, ntype);
    436       1.1       cgd 			continue;
    437       1.1       cgd 		}
    438       1.1       cgd quote:
    439       1.1       cgd 		np = nalloc(cp, ntype);
    440       1.1       cgd 		/*
    441       1.1       cgd 		 * At this point should allow to expand
    442       1.1       cgd 		 * to self if only person in group
    443       1.1       cgd 		 */
    444      1.13       wiz 		if (gp == gh->g_list && gp->ge_link == NULL)
    445       1.1       cgd 			goto skip;
    446       1.1       cgd 		if (!metoo && strcmp(cp, myname) == 0)
    447       1.1       cgd 			np->n_type |= GDEL;
    448       1.1       cgd skip:
    449       1.1       cgd 		nlist = put(nlist, np);
    450       1.1       cgd 	}
    451       1.1       cgd 	depth--;
    452      1.24  christos 	return nlist;
    453      1.24  christos }
    454      1.24  christos 
    455      1.24  christos /*
    456      1.24  christos  * Map all of the aliased users in the invoker's mailrc
    457      1.24  christos  * file and insert them into the list.
    458      1.24  christos  * Changed after all these months of service to recursively
    459      1.24  christos  * expand names (2/14/80).
    460      1.24  christos  */
    461      1.24  christos 
    462      1.24  christos PUBLIC struct name *
    463      1.24  christos usermap(struct name *names)
    464      1.24  christos {
    465      1.24  christos 	struct name *new, *np, *cp;
    466      1.24  christos 	struct grouphead *gh;
    467      1.24  christos 	int metoo;
    468      1.24  christos 
    469      1.24  christos 	new = NULL;
    470      1.24  christos 	np = names;
    471      1.24  christos 	metoo = (value(ENAME_METOO) != NULL);
    472      1.24  christos 	while (np != NULL) {
    473      1.24  christos 		if (np->n_name[0] == '\\') {
    474      1.24  christos 			cp = np->n_flink;
    475      1.24  christos 			new = put(new, np);
    476      1.24  christos 			np = cp;
    477      1.24  christos 			continue;
    478      1.24  christos 		}
    479      1.24  christos 		gh = findgroup(np->n_name);
    480      1.24  christos 		cp = np->n_flink;
    481      1.24  christos 		if (gh != NULL)
    482      1.24  christos 			new = gexpand(new, gh, metoo, np->n_type);
    483      1.24  christos 		else
    484      1.24  christos 			new = put(new, np);
    485      1.24  christos 		np = cp;
    486      1.24  christos 	}
    487      1.24  christos 	return new;
    488       1.1       cgd }
    489       1.1       cgd 
    490       1.1       cgd /*
    491       1.1       cgd  * Concatenate the two passed name lists, return the result.
    492       1.1       cgd  */
    493      1.24  christos PUBLIC struct name *
    494      1.10       wiz cat(struct name *n1, struct name *n2)
    495       1.1       cgd {
    496       1.6     lukem 	struct name *tail;
    497       1.1       cgd 
    498      1.13       wiz 	if (n1 == NULL)
    499      1.24  christos 		return n2;
    500      1.13       wiz 	if (n2 == NULL)
    501      1.24  christos 		return n1;
    502       1.1       cgd 	tail = tailof(n1);
    503       1.1       cgd 	tail->n_flink = n2;
    504       1.1       cgd 	n2->n_blink = tail;
    505      1.24  christos 	return n1;
    506      1.24  christos }
    507      1.24  christos 
    508      1.24  christos /*
    509      1.24  christos  * Determine the number of undeleted elements in
    510      1.24  christos  * a name list and return it.
    511      1.24  christos  */
    512      1.24  christos PUBLIC int
    513      1.24  christos count(struct name *np)
    514      1.24  christos {
    515      1.24  christos 	int c;
    516      1.24  christos 
    517      1.24  christos 	for (c = 0; np != NULL; np = np->n_flink)
    518      1.24  christos 		if ((np->n_type & GDEL) == 0)
    519      1.24  christos 			c++;
    520      1.24  christos 	return c;
    521       1.1       cgd }
    522       1.1       cgd 
    523       1.1       cgd /*
    524       1.1       cgd  * Unpack the name list onto a vector of strings.
    525       1.1       cgd  * Return an error if the name list won't fit.
    526       1.1       cgd  */
    527      1.24  christos PUBLIC const char **
    528      1.10       wiz unpack(struct name *np)
    529       1.1       cgd {
    530      1.18  christos 	const char **ap, **begin;
    531       1.6     lukem 	struct name *n;
    532       1.1       cgd 	int t, extra, metoo, verbose;
    533       1.1       cgd 
    534       1.1       cgd 	n = np;
    535       1.1       cgd 	if ((t = count(n)) == 0)
    536       1.6     lukem 		errx(1, "No names to unpack");
    537       1.1       cgd 	/*
    538       1.1       cgd 	 * Compute the number of extra arguments we will need.
    539       1.1       cgd 	 * We need at least two extra -- one for "mail" and one for
    540       1.1       cgd 	 * the terminating 0 pointer.  Additional spots may be needed
    541       1.1       cgd 	 * to pass along -f to the host mailer.
    542       1.1       cgd 	 */
    543       1.1       cgd 	extra = 2;
    544       1.1       cgd 	extra++;
    545      1.24  christos 	metoo = value(ENAME_METOO) != NULL;
    546       1.1       cgd 	if (metoo)
    547       1.1       cgd 		extra++;
    548      1.24  christos 	verbose = value(ENAME_VERBOSE) != NULL;
    549       1.1       cgd 	if (verbose)
    550       1.1       cgd 		extra++;
    551  1.25.4.1      matt 	begin = salloc((t + extra) * sizeof(*begin));
    552      1.11       wiz 	ap = begin;
    553      1.20      ghen 	*ap++ = "sendmail";
    554       1.1       cgd 	*ap++ = "-i";
    555       1.1       cgd 	if (metoo)
    556       1.1       cgd 		*ap++ = "-m";
    557       1.1       cgd 	if (verbose)
    558       1.1       cgd 		*ap++ = "-v";
    559  1.25.4.1      matt 	for (/*EMPTY*/; n != NULL; n = n->n_flink)
    560       1.1       cgd 		if ((n->n_type & GDEL) == 0)
    561       1.1       cgd 			*ap++ = n->n_name;
    562      1.12       wiz 	*ap = NULL;
    563      1.24  christos 	return begin;
    564       1.1       cgd }
    565       1.1       cgd 
    566       1.1       cgd /*
    567       1.1       cgd  * Remove all of the duplicates from the passed name list by
    568       1.1       cgd  * insertion sorting them, then checking for dups.
    569       1.1       cgd  * Return the head of the new list.
    570       1.1       cgd  */
    571      1.24  christos PUBLIC struct name *
    572      1.10       wiz elide(struct name *names)
    573       1.1       cgd {
    574       1.6     lukem 	struct name *np, *t, *new;
    575       1.1       cgd 	struct name *x;
    576       1.1       cgd 
    577      1.13       wiz 	if (names == NULL)
    578      1.24  christos 		return NULL;
    579       1.1       cgd 	new = names;
    580       1.1       cgd 	np = names;
    581       1.1       cgd 	np = np->n_flink;
    582      1.13       wiz 	if (np != NULL)
    583      1.13       wiz 		np->n_blink = NULL;
    584      1.13       wiz 	new->n_flink = NULL;
    585      1.13       wiz 	while (np != NULL) {
    586       1.1       cgd 		t = new;
    587       1.1       cgd 		while (strcasecmp(t->n_name, np->n_name) < 0) {
    588      1.13       wiz 			if (t->n_flink == NULL)
    589       1.1       cgd 				break;
    590       1.1       cgd 			t = t->n_flink;
    591       1.1       cgd 		}
    592       1.1       cgd 
    593       1.1       cgd 		/*
    594       1.1       cgd 		 * If we ran out of t's, put the new entry after
    595       1.1       cgd 		 * the current value of t.
    596       1.1       cgd 		 */
    597       1.1       cgd 
    598       1.1       cgd 		if (strcasecmp(t->n_name, np->n_name) < 0) {
    599       1.1       cgd 			t->n_flink = np;
    600       1.1       cgd 			np->n_blink = t;
    601       1.1       cgd 			t = np;
    602       1.1       cgd 			np = np->n_flink;
    603      1.13       wiz 			t->n_flink = NULL;
    604       1.1       cgd 			continue;
    605       1.1       cgd 		}
    606       1.1       cgd 
    607       1.1       cgd 		/*
    608       1.1       cgd 		 * Otherwise, put the new entry in front of the
    609       1.1       cgd 		 * current t.  If at the front of the list,
    610       1.1       cgd 		 * the new guy becomes the new head of the list.
    611       1.1       cgd 		 */
    612       1.1       cgd 
    613       1.1       cgd 		if (t == new) {
    614       1.1       cgd 			t = np;
    615       1.1       cgd 			np = np->n_flink;
    616       1.1       cgd 			t->n_flink = new;
    617       1.1       cgd 			new->n_blink = t;
    618      1.13       wiz 			t->n_blink = NULL;
    619       1.1       cgd 			new = t;
    620       1.1       cgd 			continue;
    621       1.1       cgd 		}
    622       1.1       cgd 
    623       1.1       cgd 		/*
    624       1.1       cgd 		 * The normal case -- we are inserting into the
    625       1.1       cgd 		 * middle of the list.
    626       1.1       cgd 		 */
    627       1.1       cgd 
    628       1.1       cgd 		x = np;
    629       1.1       cgd 		np = np->n_flink;
    630       1.1       cgd 		x->n_flink = t;
    631       1.1       cgd 		x->n_blink = t->n_blink;
    632       1.1       cgd 		t->n_blink->n_flink = x;
    633       1.1       cgd 		t->n_blink = x;
    634       1.1       cgd 	}
    635       1.1       cgd 
    636       1.1       cgd 	/*
    637       1.1       cgd 	 * Now the list headed up by new is sorted.
    638       1.1       cgd 	 * Go through it and remove duplicates.
    639       1.1       cgd 	 */
    640       1.1       cgd 
    641       1.1       cgd 	np = new;
    642      1.13       wiz 	while (np != NULL) {
    643       1.1       cgd 		t = np;
    644      1.13       wiz 		while (t->n_flink != NULL &&
    645       1.1       cgd 		       strcasecmp(np->n_name, t->n_flink->n_name) == 0)
    646       1.1       cgd 			t = t->n_flink;
    647      1.13       wiz 		if (t == np || t == NULL) {
    648       1.1       cgd 			np = np->n_flink;
    649       1.1       cgd 			continue;
    650       1.1       cgd 		}
    651  1.25.4.1      matt 
    652       1.1       cgd 		/*
    653       1.1       cgd 		 * Now t points to the last entry with the same name
    654       1.1       cgd 		 * as np.  Make np point beyond t.
    655       1.1       cgd 		 */
    656       1.1       cgd 
    657       1.1       cgd 		np->n_flink = t->n_flink;
    658      1.13       wiz 		if (t->n_flink != NULL)
    659       1.1       cgd 			t->n_flink->n_blink = np;
    660       1.1       cgd 		np = np->n_flink;
    661       1.1       cgd 	}
    662      1.24  christos 	return new;
    663       1.1       cgd }
    664       1.1       cgd 
    665       1.1       cgd /*
    666       1.1       cgd  * Delete the given name from a namelist.
    667       1.1       cgd  */
    668      1.24  christos PUBLIC struct name *
    669      1.10       wiz delname(struct name *np, char name[])
    670       1.1       cgd {
    671       1.6     lukem 	struct name *p;
    672       1.1       cgd 
    673      1.13       wiz 	for (p = np; p != NULL; p = p->n_flink)
    674       1.1       cgd 		if (strcasecmp(p->n_name, name) == 0) {
    675      1.13       wiz 			if (p->n_blink == NULL) {
    676      1.13       wiz 				if (p->n_flink != NULL)
    677      1.13       wiz 					p->n_flink->n_blink = NULL;
    678       1.1       cgd 				np = p->n_flink;
    679       1.1       cgd 				continue;
    680       1.1       cgd 			}
    681      1.13       wiz 			if (p->n_flink == NULL) {
    682      1.13       wiz 				if (p->n_blink != NULL)
    683      1.13       wiz 					p->n_blink->n_flink = NULL;
    684       1.1       cgd 				continue;
    685       1.1       cgd 			}
    686       1.1       cgd 			p->n_blink->n_flink = p->n_flink;
    687       1.1       cgd 			p->n_flink->n_blink = p->n_blink;
    688       1.1       cgd 		}
    689       1.1       cgd 	return np;
    690       1.1       cgd }
    691       1.1       cgd 
    692       1.1       cgd /*
    693       1.1       cgd  * Pretty print a name list
    694       1.1       cgd  * Uncomment it if you need it.
    695       1.1       cgd  */
    696      1.24  christos #if 0
    697      1.24  christos PUBLIC void
    698       1.1       cgd prettyprint(name)
    699       1.1       cgd 	struct name *name;
    700       1.1       cgd {
    701       1.6     lukem 	struct name *np;
    702       1.1       cgd 
    703       1.1       cgd 	np = name;
    704      1.13       wiz 	while (np != NULL) {
    705      1.19  christos 		(void)fprintf(stderr, "%s(%d) ", np->n_name, np->n_type);
    706       1.1       cgd 		np = np->n_flink;
    707       1.1       cgd 	}
    708      1.19  christos 	(void)fprintf(stderr, "\n");
    709       1.1       cgd }
    710      1.24  christos #endif
    711