2017-11-20 19:49:47 +00:00
|
|
|
/*-
|
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
1994-05-27 12:33:43 +00:00
|
|
|
* Copyright (c) 1980, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2017-02-28 23:42:47 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-27 12:33:43 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
2001-03-25 04:57:05 +00:00
|
|
|
#if 0
|
1994-05-27 12:33:43 +00:00
|
|
|
static char sccsid[] = "@(#)names.c 8.1 (Berkeley) 6/6/93";
|
2001-03-25 04:57:05 +00:00
|
|
|
#endif
|
1994-05-27 12:33:43 +00:00
|
|
|
#endif /* not lint */
|
2002-06-30 05:25:07 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Mail -- a mail program
|
|
|
|
*
|
|
|
|
* Handle name lists.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "rcv.h"
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include "extern.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate a single element of a name list,
|
|
|
|
* initialize its name field to the passed
|
|
|
|
* name and return it.
|
|
|
|
*/
|
|
|
|
struct name *
|
2010-12-19 16:25:23 +00:00
|
|
|
nalloc(char str[], int ntype)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-05-27 20:26:22 +00:00
|
|
|
struct name *np;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2001-05-27 20:26:22 +00:00
|
|
|
np = (struct name *)salloc(sizeof(*np));
|
|
|
|
np->n_flink = NULL;
|
|
|
|
np->n_blink = NULL;
|
1994-05-27 12:33:43 +00:00
|
|
|
np->n_type = ntype;
|
|
|
|
np->n_name = savestr(str);
|
2001-05-27 20:26:22 +00:00
|
|
|
return (np);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find the tail of a list and return it.
|
|
|
|
*/
|
|
|
|
struct name *
|
2010-12-19 16:25:23 +00:00
|
|
|
tailof(struct name *name)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-05-27 20:26:22 +00:00
|
|
|
struct name *np;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
np = name;
|
2001-05-27 20:26:22 +00:00
|
|
|
if (np == NULL)
|
|
|
|
return (NULL);
|
|
|
|
while (np->n_flink != NULL)
|
1994-05-27 12:33:43 +00:00
|
|
|
np = np->n_flink;
|
2001-05-27 20:26:22 +00:00
|
|
|
return (np);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Extract a list of names from a line,
|
|
|
|
* and make a list of names from it.
|
2001-05-27 20:26:22 +00:00
|
|
|
* Return the list or NULL if none found.
|
1994-05-27 12:33:43 +00:00
|
|
|
*/
|
|
|
|
struct name *
|
2016-07-15 15:37:54 +00:00
|
|
|
extract(char *line, int ntype)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-05-27 20:26:22 +00:00
|
|
|
char *cp, *nbuf;
|
|
|
|
struct name *top, *np, *t;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2001-05-27 20:26:22 +00:00
|
|
|
if (line == NULL || *line == '\0')
|
|
|
|
return (NULL);
|
|
|
|
if ((nbuf = malloc(strlen(line) + 1)) == NULL)
|
2001-03-25 04:57:05 +00:00
|
|
|
err(1, "Out of memory");
|
2001-05-27 20:26:22 +00:00
|
|
|
top = NULL;
|
|
|
|
np = NULL;
|
1994-05-27 12:33:43 +00:00
|
|
|
cp = line;
|
2001-05-27 20:26:22 +00:00
|
|
|
while ((cp = yankword(cp, nbuf)) != NULL) {
|
1994-05-27 12:33:43 +00:00
|
|
|
t = nalloc(nbuf, ntype);
|
2001-05-27 20:26:22 +00:00
|
|
|
if (top == NULL)
|
1994-05-27 12:33:43 +00:00
|
|
|
top = t;
|
|
|
|
else
|
|
|
|
np->n_flink = t;
|
|
|
|
t->n_blink = np;
|
|
|
|
np = t;
|
|
|
|
}
|
2001-05-27 20:26:22 +00:00
|
|
|
(void)free(nbuf);
|
|
|
|
return (top);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Turn a list of names into a string of the same names.
|
|
|
|
*/
|
|
|
|
char *
|
2010-12-19 16:25:23 +00:00
|
|
|
detract(struct name *np, int ntype)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-05-27 20:26:22 +00:00
|
|
|
int s, comma;
|
|
|
|
char *cp, *top;
|
|
|
|
struct name *p;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
comma = ntype & GCOMMA;
|
2001-05-27 20:26:22 +00:00
|
|
|
if (np == NULL)
|
|
|
|
return (NULL);
|
1994-05-27 12:33:43 +00:00
|
|
|
ntype &= ~GCOMMA;
|
|
|
|
s = 0;
|
|
|
|
if (debug && comma)
|
|
|
|
fprintf(stderr, "detract asked to insert commas\n");
|
2001-05-27 20:26:22 +00:00
|
|
|
for (p = np; p != NULL; p = p->n_flink) {
|
1994-05-27 12:33:43 +00:00
|
|
|
if (ntype && (p->n_type & GMASK) != ntype)
|
|
|
|
continue;
|
|
|
|
s += strlen(p->n_name) + 1;
|
|
|
|
if (comma)
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
if (s == 0)
|
2001-05-27 20:26:22 +00:00
|
|
|
return (NULL);
|
1994-05-27 12:33:43 +00:00
|
|
|
s += 2;
|
|
|
|
top = salloc(s);
|
|
|
|
cp = top;
|
2001-05-27 20:26:22 +00:00
|
|
|
for (p = np; p != NULL; p = p->n_flink) {
|
1994-05-27 12:33:43 +00:00
|
|
|
if (ntype && (p->n_type & GMASK) != ntype)
|
|
|
|
continue;
|
2001-03-25 04:57:05 +00:00
|
|
|
cp += strlcpy(cp, p->n_name, strlen(p->n_name) + 1);
|
2001-05-27 20:26:22 +00:00
|
|
|
if (comma && p->n_flink != NULL)
|
1994-05-27 12:33:43 +00:00
|
|
|
*cp++ = ',';
|
|
|
|
*cp++ = ' ';
|
|
|
|
}
|
2001-03-25 04:57:05 +00:00
|
|
|
*--cp = '\0';
|
1994-05-27 12:33:43 +00:00
|
|
|
if (comma && *--cp == ',')
|
2001-03-25 04:57:05 +00:00
|
|
|
*cp = '\0';
|
2001-05-27 20:26:22 +00:00
|
|
|
return (top);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Grab a single word (liberal word)
|
|
|
|
* Throw away things between ()'s, and take anything between <>.
|
|
|
|
*/
|
|
|
|
char *
|
2016-07-15 15:37:54 +00:00
|
|
|
yankword(char *ap, char *wbuf)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-05-27 20:26:22 +00:00
|
|
|
char *cp, *cp2;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
cp = ap;
|
|
|
|
for (;;) {
|
|
|
|
if (*cp == '\0')
|
2001-05-27 20:26:22 +00:00
|
|
|
return (NULL);
|
1994-05-27 12:33:43 +00:00
|
|
|
if (*cp == '(') {
|
2001-05-27 20:26:22 +00:00
|
|
|
int nesting = 0;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
while (*cp != '\0') {
|
|
|
|
switch (*cp++) {
|
|
|
|
case '(':
|
|
|
|
nesting++;
|
|
|
|
break;
|
|
|
|
case ')':
|
|
|
|
--nesting;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (nesting <= 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (*cp == ' ' || *cp == '\t' || *cp == ',')
|
|
|
|
cp++;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (*cp == '<')
|
|
|
|
for (cp2 = wbuf; *cp && (*cp2++ = *cp++) != '>';)
|
|
|
|
;
|
|
|
|
else
|
2001-05-27 20:26:22 +00:00
|
|
|
for (cp2 = wbuf; *cp != '\0' && strchr(" \t,(", *cp) == NULL;
|
|
|
|
*cp2++ = *cp++)
|
1994-05-27 12:33:43 +00:00
|
|
|
;
|
|
|
|
*cp2 = '\0';
|
2001-05-27 20:26:22 +00:00
|
|
|
return (cp);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
2004-02-29 20:44:44 +00:00
|
|
|
/*
|
|
|
|
* Grab a single login name (liberal word)
|
|
|
|
* Throw away things between ()'s, take anything between <>,
|
|
|
|
* and look for words before metacharacters %, @, !.
|
|
|
|
*/
|
|
|
|
char *
|
2016-07-15 15:37:54 +00:00
|
|
|
yanklogin(char *ap, char *wbuf)
|
2004-02-29 20:44:44 +00:00
|
|
|
{
|
|
|
|
char *cp, *cp2, *cp_temp;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
cp = ap;
|
|
|
|
for (;;) {
|
|
|
|
if (*cp == '\0')
|
|
|
|
return (NULL);
|
|
|
|
if (*cp == '(') {
|
|
|
|
int nesting = 0;
|
|
|
|
|
|
|
|
while (*cp != '\0') {
|
|
|
|
switch (*cp++) {
|
|
|
|
case '(':
|
|
|
|
nesting++;
|
|
|
|
break;
|
|
|
|
case ')':
|
|
|
|
--nesting;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (nesting <= 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (*cp == ' ' || *cp == '\t' || *cp == ',')
|
|
|
|
cp++;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now, let's go forward till we meet the needed character,
|
|
|
|
* and step one word back.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* First, remember current point. */
|
|
|
|
cp_temp = cp;
|
|
|
|
n = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Note that we look ahead in a cycle. This is safe, since
|
|
|
|
* non-end of string is checked first.
|
|
|
|
*/
|
|
|
|
while(*cp != '\0' && strchr("@%!", *(cp + 1)) == NULL)
|
|
|
|
cp++;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now, start stepping back to the first non-word character,
|
|
|
|
* while counting the number of symbols in a word.
|
|
|
|
*/
|
|
|
|
while(cp != cp_temp && strchr(" \t,<>", *(cp - 1)) == NULL) {
|
|
|
|
n++;
|
|
|
|
cp--;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Finally, grab the word forward. */
|
|
|
|
cp2 = wbuf;
|
|
|
|
while(n >= 0) {
|
|
|
|
*cp2++=*cp++;
|
|
|
|
n--;
|
|
|
|
}
|
|
|
|
|
|
|
|
*cp2 = '\0';
|
|
|
|
return (cp);
|
|
|
|
}
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
|
|
|
* For each recipient in the passed name list with a /
|
|
|
|
* in the name, append the message to the end of the named file
|
|
|
|
* and remove him from the recipient list.
|
|
|
|
*
|
|
|
|
* Recipients whose name begins with | are piped through the given
|
|
|
|
* program and removed.
|
|
|
|
*/
|
|
|
|
struct name *
|
2010-12-19 16:25:23 +00:00
|
|
|
outof(struct name *names, FILE *fo, struct header *hp)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-05-27 20:26:22 +00:00
|
|
|
int c, ispipe;
|
|
|
|
struct name *np, *top;
|
|
|
|
time_t now;
|
|
|
|
char *date, *fname;
|
1994-05-27 12:33:43 +00:00
|
|
|
FILE *fout, *fin;
|
|
|
|
|
|
|
|
top = names;
|
|
|
|
np = names;
|
2001-05-27 20:26:22 +00:00
|
|
|
(void)time(&now);
|
1994-05-27 12:33:43 +00:00
|
|
|
date = ctime(&now);
|
2001-05-27 20:26:22 +00:00
|
|
|
while (np != NULL) {
|
1994-05-27 12:33:43 +00:00
|
|
|
if (!isfileaddr(np->n_name) && np->n_name[0] != '|') {
|
|
|
|
np = np->n_flink;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
ispipe = np->n_name[0] == '|';
|
|
|
|
if (ispipe)
|
|
|
|
fname = np->n_name+1;
|
|
|
|
else
|
|
|
|
fname = expand(np->n_name);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* See if we have copied the complete message out yet.
|
|
|
|
* If not, do so.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (image < 0) {
|
2001-03-25 04:57:05 +00:00
|
|
|
int fd;
|
|
|
|
char tempname[PATHSIZE];
|
|
|
|
|
2001-05-27 20:26:22 +00:00
|
|
|
(void)snprintf(tempname, sizeof(tempname),
|
|
|
|
"%s/mail.ReXXXXXXXXXX", tmpdir);
|
2001-03-25 04:57:05 +00:00
|
|
|
if ((fd = mkstemp(tempname)) == -1 ||
|
|
|
|
(fout = Fdopen(fd, "a")) == NULL) {
|
|
|
|
warn("%s", tempname);
|
1994-05-27 12:33:43 +00:00
|
|
|
senderr++;
|
|
|
|
goto cant;
|
|
|
|
}
|
2001-03-25 04:57:05 +00:00
|
|
|
image = open(tempname, O_RDWR);
|
2001-05-27 20:26:22 +00:00
|
|
|
(void)rm(tempname);
|
1994-05-27 12:33:43 +00:00
|
|
|
if (image < 0) {
|
2001-03-25 04:57:05 +00:00
|
|
|
warn("%s", tempname);
|
1994-05-27 12:33:43 +00:00
|
|
|
senderr++;
|
2001-05-27 20:26:22 +00:00
|
|
|
(void)Fclose(fout);
|
1994-05-27 12:33:43 +00:00
|
|
|
goto cant;
|
|
|
|
}
|
2001-05-27 20:26:22 +00:00
|
|
|
(void)fcntl(image, F_SETFD, 1);
|
1994-05-27 12:33:43 +00:00
|
|
|
fprintf(fout, "From %s %s", myname, date);
|
1998-01-02 16:44:13 +00:00
|
|
|
puthead(hp, fout,
|
2001-05-27 20:26:22 +00:00
|
|
|
GTO|GSUBJECT|GCC|GREPLYTO|GINREPLYTO|GNL);
|
1994-05-27 12:33:43 +00:00
|
|
|
while ((c = getc(fo)) != EOF)
|
2001-05-27 20:26:22 +00:00
|
|
|
(void)putc(c, fout);
|
1994-05-27 12:33:43 +00:00
|
|
|
rewind(fo);
|
2001-05-27 20:26:22 +00:00
|
|
|
fprintf(fout, "\n");
|
|
|
|
(void)fflush(fout);
|
2001-03-25 04:57:05 +00:00
|
|
|
if (ferror(fout)) {
|
|
|
|
warn("%s", tempname);
|
|
|
|
senderr++;
|
2001-05-27 20:26:22 +00:00
|
|
|
(void)Fclose(fout);
|
2001-03-25 04:57:05 +00:00
|
|
|
goto cant;
|
|
|
|
}
|
2001-05-27 20:26:22 +00:00
|
|
|
(void)Fclose(fout);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now either copy "image" to the desired file
|
|
|
|
* or give it as the standard input to the desired
|
|
|
|
* program as appropriate.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (ispipe) {
|
|
|
|
int pid;
|
2001-05-27 20:26:22 +00:00
|
|
|
char *sh;
|
2001-12-18 20:52:09 +00:00
|
|
|
sigset_t nset;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX
|
|
|
|
* We can't really reuse the same image file,
|
|
|
|
* because multiple piped recipients will
|
|
|
|
* share the same lseek location and trample
|
|
|
|
* on one another.
|
|
|
|
*/
|
2001-05-27 20:26:22 +00:00
|
|
|
if ((sh = value("SHELL")) == NULL)
|
|
|
|
sh = _PATH_CSHELL;
|
2001-12-18 20:52:09 +00:00
|
|
|
(void)sigemptyset(&nset);
|
|
|
|
(void)sigaddset(&nset, SIGHUP);
|
|
|
|
(void)sigaddset(&nset, SIGINT);
|
|
|
|
(void)sigaddset(&nset, SIGQUIT);
|
|
|
|
pid = start_command(sh, &nset, image, -1, "-c", fname,
|
|
|
|
NULL);
|
1994-05-27 12:33:43 +00:00
|
|
|
if (pid < 0) {
|
|
|
|
senderr++;
|
|
|
|
goto cant;
|
|
|
|
}
|
|
|
|
free_child(pid);
|
|
|
|
} else {
|
|
|
|
int f;
|
|
|
|
if ((fout = Fopen(fname, "a")) == NULL) {
|
2001-03-25 04:57:05 +00:00
|
|
|
warn("%s", fname);
|
1994-05-27 12:33:43 +00:00
|
|
|
senderr++;
|
|
|
|
goto cant;
|
|
|
|
}
|
|
|
|
if ((f = dup(image)) < 0) {
|
2001-03-25 04:57:05 +00:00
|
|
|
warn("dup");
|
1994-05-27 12:33:43 +00:00
|
|
|
fin = NULL;
|
|
|
|
} else
|
|
|
|
fin = Fdopen(f, "r");
|
|
|
|
if (fin == NULL) {
|
|
|
|
fprintf(stderr, "Can't reopen image\n");
|
2001-05-27 20:26:22 +00:00
|
|
|
(void)Fclose(fout);
|
1994-05-27 12:33:43 +00:00
|
|
|
senderr++;
|
|
|
|
goto cant;
|
|
|
|
}
|
|
|
|
rewind(fin);
|
|
|
|
while ((c = getc(fin)) != EOF)
|
2001-05-27 20:26:22 +00:00
|
|
|
(void)putc(c, fout);
|
2001-03-25 04:57:05 +00:00
|
|
|
if (ferror(fout)) {
|
|
|
|
warnx("%s", fname);
|
|
|
|
senderr++;
|
2001-05-27 20:26:22 +00:00
|
|
|
(void)Fclose(fout);
|
|
|
|
(void)Fclose(fin);
|
2001-03-25 04:57:05 +00:00
|
|
|
goto cant;
|
|
|
|
}
|
2001-05-27 20:26:22 +00:00
|
|
|
(void)Fclose(fout);
|
|
|
|
(void)Fclose(fin);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
cant:
|
|
|
|
/*
|
|
|
|
* In days of old we removed the entry from the
|
|
|
|
* the list; now for sake of header expansion
|
|
|
|
* we leave it in and mark it as deleted.
|
|
|
|
*/
|
|
|
|
np->n_type |= GDEL;
|
|
|
|
np = np->n_flink;
|
|
|
|
}
|
|
|
|
if (image >= 0) {
|
2001-05-27 20:26:22 +00:00
|
|
|
(void)close(image);
|
1994-05-27 12:33:43 +00:00
|
|
|
image = -1;
|
|
|
|
}
|
2001-05-27 20:26:22 +00:00
|
|
|
return (top);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Determine if the passed address is a local "send to file" address.
|
|
|
|
* If any of the network metacharacters precedes any slashes, it can't
|
|
|
|
* be a filename. We cheat with .'s to allow path names like ./...
|
|
|
|
*/
|
|
|
|
int
|
2010-12-19 16:25:23 +00:00
|
|
|
isfileaddr(char *name)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-05-27 20:26:22 +00:00
|
|
|
char *cp;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
if (*name == '+')
|
2001-05-27 20:26:22 +00:00
|
|
|
return (1);
|
|
|
|
for (cp = name; *cp != '\0'; cp++) {
|
1994-05-27 12:33:43 +00:00
|
|
|
if (*cp == '!' || *cp == '%' || *cp == '@')
|
2001-05-27 20:26:22 +00:00
|
|
|
return (0);
|
1994-05-27 12:33:43 +00:00
|
|
|
if (*cp == '/')
|
2001-05-27 20:26:22 +00:00
|
|
|
return (1);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2001-05-27 20:26:22 +00:00
|
|
|
return (0);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Map all of the aliased users in the invoker's mailrc
|
|
|
|
* file and insert them into the list.
|
|
|
|
* Changed after all these months of service to recursively
|
|
|
|
* expand names (2/14/80).
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct name *
|
2010-12-19 16:25:23 +00:00
|
|
|
usermap(struct name *names)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-05-27 20:26:22 +00:00
|
|
|
struct name *new, *np, *cp;
|
1994-05-27 12:33:43 +00:00
|
|
|
struct grouphead *gh;
|
2001-05-27 20:26:22 +00:00
|
|
|
int metoo;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2001-05-27 20:26:22 +00:00
|
|
|
new = NULL;
|
1994-05-27 12:33:43 +00:00
|
|
|
np = names;
|
2001-05-27 20:26:22 +00:00
|
|
|
metoo = (value("metoo") != NULL);
|
|
|
|
while (np != NULL) {
|
1994-05-27 12:33:43 +00:00
|
|
|
if (np->n_name[0] == '\\') {
|
|
|
|
cp = np->n_flink;
|
|
|
|
new = put(new, np);
|
|
|
|
np = cp;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
gh = findgroup(np->n_name);
|
|
|
|
cp = np->n_flink;
|
2001-05-27 20:26:22 +00:00
|
|
|
if (gh != NULL)
|
1994-05-27 12:33:43 +00:00
|
|
|
new = gexpand(new, gh, metoo, np->n_type);
|
|
|
|
else
|
|
|
|
new = put(new, np);
|
|
|
|
np = cp;
|
|
|
|
}
|
2001-05-27 20:26:22 +00:00
|
|
|
return (new);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Recursively expand a group name. We limit the expansion to some
|
|
|
|
* fixed level to keep things from going haywire.
|
|
|
|
* Direct recursion is not expanded for convenience.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct name *
|
2010-12-19 16:25:23 +00:00
|
|
|
gexpand(struct name *nlist, struct grouphead *gh, int metoo, int ntype)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
struct group *gp;
|
|
|
|
struct grouphead *ngh;
|
|
|
|
struct name *np;
|
|
|
|
static int depth;
|
|
|
|
char *cp;
|
|
|
|
|
|
|
|
if (depth > MAXEXP) {
|
|
|
|
printf("Expanding alias to depth larger than %d\n", MAXEXP);
|
2001-05-27 20:26:22 +00:00
|
|
|
return (nlist);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
depth++;
|
2001-05-27 20:26:22 +00:00
|
|
|
for (gp = gh->g_list; gp != NULL; gp = gp->ge_link) {
|
1994-05-27 12:33:43 +00:00
|
|
|
cp = gp->ge_name;
|
|
|
|
if (*cp == '\\')
|
|
|
|
goto quote;
|
|
|
|
if (strcmp(cp, gh->g_name) == 0)
|
|
|
|
goto quote;
|
2001-05-27 20:26:22 +00:00
|
|
|
if ((ngh = findgroup(cp)) != NULL) {
|
1994-05-27 12:33:43 +00:00
|
|
|
nlist = gexpand(nlist, ngh, metoo, ntype);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
quote:
|
|
|
|
np = nalloc(cp, ntype);
|
|
|
|
/*
|
|
|
|
* At this point should allow to expand
|
|
|
|
* to self if only person in group
|
|
|
|
*/
|
2001-05-27 20:26:22 +00:00
|
|
|
if (gp == gh->g_list && gp->ge_link == NULL)
|
1994-05-27 12:33:43 +00:00
|
|
|
goto skip;
|
|
|
|
if (!metoo && strcmp(cp, myname) == 0)
|
|
|
|
np->n_type |= GDEL;
|
|
|
|
skip:
|
|
|
|
nlist = put(nlist, np);
|
|
|
|
}
|
|
|
|
depth--;
|
2001-05-27 20:26:22 +00:00
|
|
|
return (nlist);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Concatenate the two passed name lists, return the result.
|
|
|
|
*/
|
|
|
|
struct name *
|
2010-12-19 16:25:23 +00:00
|
|
|
cat(struct name *n1, struct name *n2)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-05-27 20:26:22 +00:00
|
|
|
struct name *tail;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2001-05-27 20:26:22 +00:00
|
|
|
if (n1 == NULL)
|
|
|
|
return (n2);
|
|
|
|
if (n2 == NULL)
|
|
|
|
return (n1);
|
1994-05-27 12:33:43 +00:00
|
|
|
tail = tailof(n1);
|
|
|
|
tail->n_flink = n2;
|
|
|
|
n2->n_blink = tail;
|
2001-05-27 20:26:22 +00:00
|
|
|
return (n1);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Unpack the name list onto a vector of strings.
|
|
|
|
* Return an error if the name list won't fit.
|
|
|
|
*/
|
|
|
|
char **
|
2010-12-19 16:25:23 +00:00
|
|
|
unpack(struct name *np)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-05-27 20:26:22 +00:00
|
|
|
char **ap, **top;
|
|
|
|
struct name *n;
|
1994-05-27 12:33:43 +00:00
|
|
|
int t, extra, metoo, verbose;
|
|
|
|
|
|
|
|
n = np;
|
|
|
|
if ((t = count(n)) == 0)
|
2001-03-25 04:57:05 +00:00
|
|
|
errx(1, "No names to unpack");
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
|
|
|
* Compute the number of extra arguments we will need.
|
|
|
|
* We need at least two extra -- one for "mail" and one for
|
|
|
|
* the terminating 0 pointer. Additional spots may be needed
|
|
|
|
* to pass along -f to the host mailer.
|
|
|
|
*/
|
|
|
|
extra = 2;
|
|
|
|
extra++;
|
2001-05-27 20:26:22 +00:00
|
|
|
metoo = value("metoo") != NULL;
|
1994-05-27 12:33:43 +00:00
|
|
|
if (metoo)
|
|
|
|
extra++;
|
2001-05-27 20:26:22 +00:00
|
|
|
verbose = value("verbose") != NULL;
|
1994-05-27 12:33:43 +00:00
|
|
|
if (verbose)
|
|
|
|
extra++;
|
2001-05-27 20:26:22 +00:00
|
|
|
top = (char **)salloc((t + extra) * sizeof(*top));
|
1994-05-27 12:33:43 +00:00
|
|
|
ap = top;
|
2017-12-27 06:23:50 +00:00
|
|
|
*ap++ = "sendmail";
|
1994-05-27 12:33:43 +00:00
|
|
|
*ap++ = "-i";
|
|
|
|
if (metoo)
|
|
|
|
*ap++ = "-m";
|
|
|
|
if (verbose)
|
|
|
|
*ap++ = "-v";
|
2001-05-27 20:26:22 +00:00
|
|
|
for (; n != NULL; n = n->n_flink)
|
1994-05-27 12:33:43 +00:00
|
|
|
if ((n->n_type & GDEL) == 0)
|
|
|
|
*ap++ = n->n_name;
|
2001-05-27 20:26:22 +00:00
|
|
|
*ap = NULL;
|
|
|
|
return (top);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Remove all of the duplicates from the passed name list by
|
|
|
|
* insertion sorting them, then checking for dups.
|
|
|
|
* Return the head of the new list.
|
|
|
|
*/
|
|
|
|
struct name *
|
2010-12-19 16:25:23 +00:00
|
|
|
elide(struct name *names)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-05-27 20:26:22 +00:00
|
|
|
struct name *np, *t, *new;
|
1994-05-27 12:33:43 +00:00
|
|
|
struct name *x;
|
|
|
|
|
2001-05-27 20:26:22 +00:00
|
|
|
if (names == NULL)
|
|
|
|
return (NULL);
|
1994-05-27 12:33:43 +00:00
|
|
|
new = names;
|
|
|
|
np = names;
|
|
|
|
np = np->n_flink;
|
2001-05-27 20:26:22 +00:00
|
|
|
if (np != NULL)
|
|
|
|
np->n_blink = NULL;
|
|
|
|
new->n_flink = NULL;
|
|
|
|
while (np != NULL) {
|
1994-05-27 12:33:43 +00:00
|
|
|
t = new;
|
|
|
|
while (strcasecmp(t->n_name, np->n_name) < 0) {
|
2001-05-27 20:26:22 +00:00
|
|
|
if (t->n_flink == NULL)
|
1994-05-27 12:33:43 +00:00
|
|
|
break;
|
|
|
|
t = t->n_flink;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we ran out of t's, put the new entry after
|
|
|
|
* the current value of t.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (strcasecmp(t->n_name, np->n_name) < 0) {
|
|
|
|
t->n_flink = np;
|
|
|
|
np->n_blink = t;
|
|
|
|
t = np;
|
|
|
|
np = np->n_flink;
|
2001-05-27 20:26:22 +00:00
|
|
|
t->n_flink = NULL;
|
1994-05-27 12:33:43 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Otherwise, put the new entry in front of the
|
|
|
|
* current t. If at the front of the list,
|
|
|
|
* the new guy becomes the new head of the list.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (t == new) {
|
|
|
|
t = np;
|
|
|
|
np = np->n_flink;
|
|
|
|
t->n_flink = new;
|
|
|
|
new->n_blink = t;
|
2001-05-27 20:26:22 +00:00
|
|
|
t->n_blink = NULL;
|
1994-05-27 12:33:43 +00:00
|
|
|
new = t;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The normal case -- we are inserting into the
|
|
|
|
* middle of the list.
|
|
|
|
*/
|
|
|
|
|
|
|
|
x = np;
|
|
|
|
np = np->n_flink;
|
|
|
|
x->n_flink = t;
|
|
|
|
x->n_blink = t->n_blink;
|
|
|
|
t->n_blink->n_flink = x;
|
|
|
|
t->n_blink = x;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now the list headed up by new is sorted.
|
|
|
|
* Go through it and remove duplicates.
|
|
|
|
*/
|
|
|
|
|
|
|
|
np = new;
|
2001-05-27 20:26:22 +00:00
|
|
|
while (np != NULL) {
|
1994-05-27 12:33:43 +00:00
|
|
|
t = np;
|
2001-05-27 20:26:22 +00:00
|
|
|
while (t->n_flink != NULL &&
|
|
|
|
strcasecmp(np->n_name, t->n_flink->n_name) == 0)
|
1994-05-27 12:33:43 +00:00
|
|
|
t = t->n_flink;
|
2001-05-27 20:26:22 +00:00
|
|
|
if (t == np || t == NULL) {
|
1994-05-27 12:33:43 +00:00
|
|
|
np = np->n_flink;
|
|
|
|
continue;
|
|
|
|
}
|
1995-05-30 06:41:30 +00:00
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
|
|
|
* Now t points to the last entry with the same name
|
|
|
|
* as np. Make np point beyond t.
|
|
|
|
*/
|
|
|
|
|
|
|
|
np->n_flink = t->n_flink;
|
2001-05-27 20:26:22 +00:00
|
|
|
if (t->n_flink != NULL)
|
1994-05-27 12:33:43 +00:00
|
|
|
t->n_flink->n_blink = np;
|
|
|
|
np = np->n_flink;
|
|
|
|
}
|
2001-05-27 20:26:22 +00:00
|
|
|
return (new);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Put another node onto a list of names and return
|
|
|
|
* the list.
|
|
|
|
*/
|
|
|
|
struct name *
|
2010-12-19 16:25:23 +00:00
|
|
|
put(struct name *list, struct name *node)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
node->n_flink = list;
|
2001-05-27 20:26:22 +00:00
|
|
|
node->n_blink = NULL;
|
|
|
|
if (list != NULL)
|
1994-05-27 12:33:43 +00:00
|
|
|
list->n_blink = node;
|
2001-05-27 20:26:22 +00:00
|
|
|
return (node);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Determine the number of undeleted elements in
|
|
|
|
* a name list and return it.
|
|
|
|
*/
|
|
|
|
int
|
2010-12-19 16:25:23 +00:00
|
|
|
count(struct name *np)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-05-27 20:26:22 +00:00
|
|
|
int c;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2001-05-27 20:26:22 +00:00
|
|
|
for (c = 0; np != NULL; np = np->n_flink)
|
1994-05-27 12:33:43 +00:00
|
|
|
if ((np->n_type & GDEL) == 0)
|
|
|
|
c++;
|
2001-05-27 20:26:22 +00:00
|
|
|
return (c);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Delete the given name from a namelist.
|
|
|
|
*/
|
|
|
|
struct name *
|
2010-12-19 16:25:23 +00:00
|
|
|
delname(struct name *np, char name[])
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-05-27 20:26:22 +00:00
|
|
|
struct name *p;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2001-05-27 20:26:22 +00:00
|
|
|
for (p = np; p != NULL; p = p->n_flink)
|
1994-05-27 12:33:43 +00:00
|
|
|
if (strcasecmp(p->n_name, name) == 0) {
|
2001-05-27 20:26:22 +00:00
|
|
|
if (p->n_blink == NULL) {
|
|
|
|
if (p->n_flink != NULL)
|
|
|
|
p->n_flink->n_blink = NULL;
|
1994-05-27 12:33:43 +00:00
|
|
|
np = p->n_flink;
|
|
|
|
continue;
|
|
|
|
}
|
2001-05-27 20:26:22 +00:00
|
|
|
if (p->n_flink == NULL) {
|
|
|
|
if (p->n_blink != NULL)
|
|
|
|
p->n_blink->n_flink = NULL;
|
1994-05-27 12:33:43 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
p->n_blink->n_flink = p->n_flink;
|
|
|
|
p->n_flink->n_blink = p->n_blink;
|
|
|
|
}
|
2001-05-27 20:26:22 +00:00
|
|
|
return (np);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Pretty print a name list
|
|
|
|
* Uncomment it if you need it.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
void
|
2010-12-19 16:25:23 +00:00
|
|
|
prettyprint(struct name *name)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2001-05-27 20:26:22 +00:00
|
|
|
struct name *np;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
np = name;
|
2001-05-27 20:26:22 +00:00
|
|
|
while (np != NULL) {
|
1994-05-27 12:33:43 +00:00
|
|
|
fprintf(stderr, "%s(%d) ", np->n_name, np->n_type);
|
|
|
|
np = np->n_flink;
|
|
|
|
}
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
*/
|