#include "rcv.h"
#include <fcntl.h>
#include "extern.h"
struct name *
nalloc(char *str, int ntype)
{
struct name *np;
np = (struct name *)salloc(sizeof(*np));
np->n_flink = NULL;
np->n_blink = NULL;
np->n_type = ntype;
np->n_name = savestr(str);
return(np);
}
struct name *
tailof(struct name *name)
{
struct name *np;
np = name;
if (np == NULL)
return(NULL);
while (np->n_flink != NULL)
np = np->n_flink;
return(np);
}
struct name *
extract(char *line, int ntype)
{
char *cp;
struct name *top, *np, *t;
char *nbuf;
if (line == NULL || *line == '\0')
return(NULL);
if ((nbuf = malloc(strlen(line) + 1)) == NULL)
err(1, "malloc");
top = NULL;
np = NULL;
cp = line;
while ((cp = yankword(cp, nbuf)) != NULL) {
t = nalloc(nbuf, ntype);
if (top == NULL)
top = t;
else
np->n_flink = t;
t->n_blink = np;
np = t;
}
(void)free(nbuf);
return(top);
}
char *
detract(struct name *np, int ntype)
{
int s, comma;
char *cp, *top;
struct name *p;
comma = ntype & GCOMMA;
if (np == NULL)
return(NULL);
ntype &= ~GCOMMA;
s = 0;
if (debug && comma)
fputs("detract asked to insert commas\n", stderr);
for (p = np; p != NULL; p = p->n_flink) {
if (ntype && (p->n_type & GMASK) != ntype)
continue;
s += strlen(p->n_name) + 1;
if (comma)
s++;
}
if (s == 0)
return(NULL);
s += 2;
top = salloc(s);
cp = top;
for (p = np; p != NULL; p = p->n_flink) {
if (ntype && (p->n_type & GMASK) != ntype)
continue;
cp = copy(p->n_name, cp);
if (comma && p->n_flink != NULL)
*cp++ = ',';
*cp++ = ' ';
}
*--cp = 0;
if (comma && *--cp == ',')
*cp = 0;
return(top);
}
char *
yankword(char *ap, char *wbuf)
{
char *cp, *cp2;
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;
}
if (*cp == '<')
for (cp2 = wbuf; *cp && (*cp2++ = *cp++) != '>';)
;
else
for (cp2 = wbuf; *cp && !strchr(" \t,(", *cp); *cp2++ = *cp++)
;
*cp2 = '\0';
return(cp);
}
struct name *
outof(struct name *names, FILE *fo, struct header *hp)
{
int c, ispipe;
struct name *np, *top;
time_t now;
char *date, *fname;
FILE *fout, *fin;
if (value("expandaddr") == NULL)
return(names);
top = names;
np = names;
(void)time(&now);
date = ctime(&now);
while (np != NULL) {
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);
if (image < 0) {
int fd;
char tempname[PATHSIZE];
(void)snprintf(tempname, sizeof(tempname),
"%s/mail.ReXXXXXXXXXX", tmpdir);
if ((fd = mkstemp(tempname)) == -1 ||
(fout = Fdopen(fd, "a")) == NULL) {
warn("%s", tempname);
senderr++;
goto cant;
}
image = open(tempname, O_RDWR | O_CLOEXEC);
(void)rm(tempname);
if (image == -1) {
warn("%s", tempname);
senderr++;
(void)Fclose(fout);
goto cant;
}
fprintf(fout, "From %s %s", myname, date);
puthead(hp, fout, GTO|GSUBJECT|GCC|GNL);
while ((c = getc(fo)) != EOF)
(void)putc(c, fout);
rewind(fo);
(void)putc('\n', fout);
(void)fflush(fout);
if (ferror(fout))
warn("%s", tempname);
(void)Fclose(fout);
}
if (ispipe) {
pid_t pid;
char *shell;
sigset_t nset;
shell = value("SHELL");
sigemptyset(&nset);
sigaddset(&nset, SIGHUP);
sigaddset(&nset, SIGINT);
sigaddset(&nset, SIGQUIT);
pid = start_command(shell, &nset,
image, -1, "-c", fname, NULL);
if (pid < 0) {
senderr++;
goto cant;
}
free_child(pid);
} else {
int f;
if ((fout = Fopen(fname, "a")) == NULL) {
warn("%s", fname);
senderr++;
goto cant;
}
if ((f = dup(image)) == -1) {
warn("dup");
fin = NULL;
} else
fin = Fdopen(f, "r");
if (fin == NULL) {
fputs("Can't reopen image\n", stderr);
(void)Fclose(fout);
senderr++;
goto cant;
}
rewind(fin);
while ((c = getc(fin)) != EOF)
(void)putc(c, fout);
if (ferror(fout)) {
senderr++;
warn("%s", fname);
}
(void)Fclose(fout);
(void)Fclose(fin);
}
cant:
np->n_type |= GDEL;
np = np->n_flink;
}
if (image >= 0) {
(void)close(image);
image = -1;
}
return(top);
}
int
isfileaddr(char *name)
{
char *cp;
if (*name == '+')
return(1);
for (cp = name; *cp; cp++) {
if (*cp == '!' || *cp == '%' || *cp == '@')
return(0);
if (*cp == '/')
return(1);
}
return(0);
}
struct name *
usermap(struct name *names)
{
struct name *new, *np, *cp;
struct grouphead *gh;
int metoo;
new = NULL;
np = names;
metoo = (value("metoo") != NULL);
while (np != NULL) {
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;
if (gh != NULL)
new = gexpand(new, gh, metoo, np->n_type);
else
new = put(new, np);
np = cp;
}
return(new);
}
struct name *
gexpand(struct name *nlist, struct grouphead *gh, int metoo, int ntype)
{
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);
return(nlist);
}
depth++;
for (gp = gh->g_list; gp != NULL; gp = gp->ge_link) {
cp = gp->ge_name;
if (*cp == '\\')
goto quote;
if (strcmp(cp, gh->g_name) == 0)
goto quote;
if ((ngh = findgroup(cp)) != NULL) {
nlist = gexpand(nlist, ngh, metoo, ntype);
continue;
}
quote:
np = nalloc(cp, ntype);
if (gp == gh->g_list && gp->ge_link == NULL)
goto skip;
if (!metoo && strcmp(cp, myname) == 0)
np->n_type |= GDEL;
skip:
nlist = put(nlist, np);
}
depth--;
return(nlist);
}
struct name *
cat(struct name *n1, struct name *n2)
{
struct name *tail;
if (n1 == NULL)
return(n2);
if (n2 == NULL)
return(n1);
tail = tailof(n1);
tail->n_flink = n2;
n2->n_blink = tail;
return(n1);
}
struct name *
elide(struct name *names)
{
struct name *np, *t, *new;
struct name *x;
if (names == NULL)
return(NULL);
new = names;
np = names;
np = np->n_flink;
if (np != NULL)
np->n_blink = NULL;
new->n_flink = NULL;
while (np != NULL) {
t = new;
while (strcasecmp(t->n_name, np->n_name) < 0) {
if (t->n_flink == NULL)
break;
t = t->n_flink;
}
if (strcasecmp(t->n_name, np->n_name) < 0) {
t->n_flink = np;
np->n_blink = t;
t = np;
np = np->n_flink;
t->n_flink = NULL;
continue;
}
if (t == new) {
t = np;
np = np->n_flink;
t->n_flink = new;
new->n_blink = t;
t->n_blink = NULL;
new = t;
continue;
}
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;
}
np = new;
while (np != NULL) {
t = np;
while (t->n_flink != NULL &&
strcasecmp(np->n_name, t->n_flink->n_name) == 0)
t = t->n_flink;
if (t == np || t == NULL) {
np = np->n_flink;
continue;
}
np->n_flink = t->n_flink;
if (t->n_flink != NULL)
t->n_flink->n_blink = np;
np = np->n_flink;
}
return(new);
}
struct name *
put(struct name *list, struct name *node)
{
node->n_flink = list;
node->n_blink = NULL;
if (list != NULL)
list->n_blink = node;
return(node);
}
int
count(struct name *np)
{
int c;
for (c = 0; np != NULL; np = np->n_flink)
if ((np->n_type & GDEL) == 0)
c++;
return(c);
}
struct name *
delname(struct name *np, const char *name)
{
struct name *p;
for (p = np; p != NULL; p = p->n_flink)
if ((strcasecmp(p->n_name, name) == 0) ||
(value("allnet") &&
strncasecmp(p->n_name, name, strlen(name)) == 0 &&
*(p->n_name+strlen(name)) == '@')) {
if (p->n_blink == NULL) {
if (p->n_flink != NULL)
p->n_flink->n_blink = NULL;
np = p->n_flink;
continue;
}
if (p->n_flink == NULL) {
if (p->n_blink != NULL)
p->n_blink->n_flink = NULL;
continue;
}
p->n_blink->n_flink = p->n_flink;
p->n_flink->n_blink = p->n_blink;
}
return(np);
}
#if 0
void
prettyprint(struct name *name)
{
struct name *np;
np = name;
while (np != NULL) {
fprintf(stderr, "%s(%d) ", np->n_name, np->n_type);
np = np->n_flink;
}
putc('\n', stderr);
}
#endif