NetBSD/usr.bin/mail/support.c

637 lines
12 KiB
C
Raw Normal View History

/* $NetBSD: support.c,v 1.12 2004/10/30 20:44:39 dsl Exp $ */
1993-03-21 12:45:37 +03:00
/*
1994-06-29 09:09:04 +04:00
* Copyright (c) 1980, 1993
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* 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.
* 3. Neither the name of the University nor the names of its contributors
1993-03-21 12:45:37 +03: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.
*/
#include <sys/cdefs.h>
1993-03-21 12:45:37 +03:00
#ifndef lint
#if 0
static char sccsid[] = "@(#)aux.c 8.1 (Berkeley) 6/6/93";
#else
__RCSID("$NetBSD: support.c,v 1.12 2004/10/30 20:44:39 dsl Exp $");
#endif
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#include "rcv.h"
1994-06-29 09:09:04 +04:00
#include "extern.h"
1993-03-21 12:45:37 +03:00
/*
* Mail -- a mail program
*
* Auxiliary functions.
*/
2002-03-02 17:59:35 +03:00
static char *save2str(char *, char *);
1993-03-21 12:45:37 +03:00
/*
* Return a pointer to a dynamic copy of the argument.
*/
char *
2002-03-02 17:59:35 +03:00
savestr(const char *str)
1993-03-21 12:45:37 +03:00
{
char *new;
int size = strlen(str) + 1;
if ((new = salloc(size)) != NULL)
memmove(new, str, size);
1993-03-21 12:45:37 +03:00
return new;
}
/*
1994-06-29 09:09:04 +04:00
* Make a copy of new argument incorporating old one.
1993-03-21 12:45:37 +03:00
*/
static char *
2002-03-02 17:59:35 +03:00
save2str(char *str, char *old)
1994-06-29 09:09:04 +04:00
{
char *new;
int newsize = strlen(str) + 1;
int oldsize = old ? strlen(old) + 1 : 0;
if ((new = salloc(newsize + oldsize)) != NULL) {
1994-06-29 09:09:04 +04:00
if (oldsize) {
memmove(new, old, oldsize);
1994-06-29 09:09:04 +04:00
new[oldsize - 1] = ' ';
}
memmove(new + oldsize, str, newsize);
1994-06-29 09:09:04 +04:00
}
return new;
}
1993-03-21 12:45:37 +03:00
/*
* Touch the named message by setting its MTOUCH flag.
* Touched messages have the effect of not being sent
* back to the system mailbox on exit.
*/
1994-06-29 09:09:04 +04:00
void
2002-03-02 17:59:35 +03:00
touch(struct message *mp)
1993-03-21 12:45:37 +03:00
{
mp->m_flag |= MTOUCH;
if ((mp->m_flag & MREAD) == 0)
mp->m_flag |= MREAD|MSTATUS;
}
/*
* Test to see if the passed file name is a directory.
* Return true if it is.
*/
1994-06-29 09:09:04 +04:00
int
2002-03-02 17:59:35 +03:00
isdir(char name[])
1993-03-21 12:45:37 +03:00
{
struct stat sbuf;
if (stat(name, &sbuf) < 0)
return(0);
1997-10-19 23:27:40 +04:00
return (S_ISDIR(sbuf.st_mode));
1993-03-21 12:45:37 +03:00
}
/*
* Count the number of arguments in the given string raw list.
*/
1994-06-29 09:09:04 +04:00
int
2002-03-02 17:59:35 +03:00
argcount(char **argv)
1993-03-21 12:45:37 +03:00
{
char **ap;
1993-03-21 12:45:37 +03:00
for (ap = argv; *ap++ != NULL;)
1993-03-21 12:45:37 +03:00
;
return ap - argv - 1;
}
/*
* Return the desired header line from the passed message
* pointer (or NULL if the desired header field is not available).
1993-03-21 12:45:37 +03:00
*/
char *
hfield(const char field[], const struct message *mp)
1993-03-21 12:45:37 +03:00
{
FILE *ibuf;
1993-03-21 12:45:37 +03:00
char linebuf[LINESIZE];
int lc;
2002-03-02 18:27:51 +03:00
char *headerfield;
char *colon, *oldhfield = NULL;
1993-03-21 12:45:37 +03:00
ibuf = setinput(mp);
if ((lc = mp->m_lines - 1) < 0)
return NULL;
1993-03-21 12:45:37 +03:00
if (readline(ibuf, linebuf, LINESIZE) < 0)
return NULL;
1993-03-21 12:45:37 +03:00
while (lc > 0) {
if ((lc = gethfield(ibuf, linebuf, lc, &colon)) < 0)
1994-06-29 09:09:04 +04:00
return oldhfield;
2002-03-02 18:27:51 +03:00
if ((headerfield = ishfield(linebuf, colon, field)) != NULL)
oldhfield = save2str(headerfield, oldhfield);
1993-03-21 12:45:37 +03:00
}
1994-06-29 09:09:04 +04:00
return oldhfield;
1993-03-21 12:45:37 +03:00
}
/*
* Return the next header field found in the given message.
* Return >= 0 if something found, < 0 elsewise.
* "colon" is set to point to the colon in the header.
* Must deal with \ continuations & other such fraud.
*/
1994-06-29 09:09:04 +04:00
int
2002-03-02 17:59:35 +03:00
gethfield(FILE *f, char linebuf[], int rem, char **colon)
1993-03-21 12:45:37 +03:00
{
char line2[LINESIZE];
char *cp, *cp2;
int c;
1993-03-21 12:45:37 +03:00
for (;;) {
if (--rem < 0)
return -1;
if ((c = readline(f, linebuf, LINESIZE)) <= 0)
return -1;
for (cp = linebuf; isprint((unsigned char)*cp) && *cp != ' ' && *cp != ':';
1993-03-21 12:45:37 +03:00
cp++)
;
if (*cp != ':' || cp == linebuf)
continue;
/*
* I guess we got a headline.
* Handle wraparounding
*/
*colon = cp;
cp = linebuf + c;
for (;;) {
while (--cp >= linebuf && (*cp == ' ' || *cp == '\t'))
;
cp++;
if (rem <= 0)
break;
ungetc(c = getc(f), f);
if (c != ' ' && c != '\t')
break;
if ((c = readline(f, line2, LINESIZE)) < 0)
break;
rem--;
for (cp2 = line2; *cp2 == ' ' || *cp2 == '\t'; cp2++)
;
c -= cp2 - line2;
if (cp + c >= linebuf + LINESIZE - 2)
break;
*cp++ = ' ';
memmove(cp, cp2, c);
1993-03-21 12:45:37 +03:00
cp += c;
}
*cp = 0;
return rem;
}
/* NOTREACHED */
}
/*
* Check whether the passed line is a header line of
* the desired breed. Return the field body, or 0.
*/
char*
ishfield(const char linebuf[], char *colon, const char field[])
1993-03-21 12:45:37 +03:00
{
char *cp = colon;
1993-03-21 12:45:37 +03:00
*cp = 0;
if (strcasecmp(linebuf, field) != 0) {
*cp = ':';
return 0;
}
*cp = ':';
for (cp++; *cp == ' ' || *cp == '\t'; cp++)
;
return cp;
}
/*
* Copy a string, lowercasing it as we go.
*/
1994-06-29 09:09:04 +04:00
void
2002-03-02 17:59:35 +03:00
istrcpy(char *dest, char *src)
1993-03-21 12:45:37 +03:00
{
do {
*dest++ = tolower((unsigned char)*src);
1993-03-21 12:45:37 +03:00
} while (*src++ != 0);
}
/*
* The following code deals with input stacking to do source
* commands. All but the current file pointer are saved on
* the stack.
*/
static int ssp; /* Top of file stack */
struct sstack {
FILE *s_file; /* File we were in. */
int s_cond; /* Saved state of conditionals */
int s_loading; /* Loading .mailrc, etc. */
} sstack[NOFILE];
/*
* Pushdown current input file and switch to a new one.
* Set the global flag "sourcing" so that others will realize
* that they are no longer reading from a tty (in all probability).
*/
1994-06-29 09:09:04 +04:00
int
2002-03-02 17:59:35 +03:00
source(void *v)
1993-03-21 12:45:37 +03:00
{
char **arglist = v;
1993-03-21 12:45:37 +03:00
FILE *fi;
char *cp;
if ((cp = expand(*arglist)) == NULL)
1993-03-21 12:45:37 +03:00
return(1);
if ((fi = Fopen(cp, "r")) == NULL) {
2002-03-06 00:29:30 +03:00
warn("%s", cp);
1993-03-21 12:45:37 +03:00
return(1);
}
if (ssp >= NOFILE - 1) {
printf("Too much \"sourcing\" going on.\n");
Fclose(fi);
return(1);
}
sstack[ssp].s_file = input;
sstack[ssp].s_cond = cond;
sstack[ssp].s_loading = loading;
ssp++;
loading = 0;
cond = CANY;
input = fi;
sourcing++;
return(0);
}
/*
* Pop the current input back to the previous level.
* Update the "sourcing" flag as appropriate.
*/
1994-06-29 09:09:04 +04:00
int
2002-03-02 17:59:35 +03:00
unstack(void)
1993-03-21 12:45:37 +03:00
{
if (ssp <= 0) {
printf("\"Source\" stack over-pop.\n");
sourcing = 0;
return(1);
}
Fclose(input);
if (cond != CANY)
printf("Unmatched \"if\"\n");
ssp--;
cond = sstack[ssp].s_cond;
loading = sstack[ssp].s_loading;
input = sstack[ssp].s_file;
if (ssp == 0)
sourcing = loading;
return(0);
}
/*
* Touch the indicated file.
* This is nifty for the shell.
*/
1994-06-29 09:09:04 +04:00
void
2002-03-02 17:59:35 +03:00
alter(char *name)
1993-03-21 12:45:37 +03:00
{
struct stat sb;
struct timeval tv[2];
if (stat(name, &sb))
return;
2002-03-06 00:18:14 +03:00
(void)gettimeofday(&tv[0], NULL);
tv[0].tv_sec++;
TIMESPEC_TO_TIMEVAL(&tv[1], &sb.st_mtimespec);
2002-03-06 00:18:14 +03:00
(void)utimes(name, tv);
1993-03-21 12:45:37 +03:00
}
/*
* Examine the passed line buffer and
* return true if it is all blanks and tabs.
*/
1994-06-29 09:09:04 +04:00
int
2002-03-02 17:59:35 +03:00
blankline(char linebuf[])
1993-03-21 12:45:37 +03:00
{
char *cp;
1993-03-21 12:45:37 +03:00
for (cp = linebuf; *cp; cp++)
if (*cp != ' ' && *cp != '\t')
return(0);
return(1);
}
/*
* Get sender's name from this message. If the message has
* a bunch of arpanet stuff in it, we may have to skin the name
* before returning it.
*/
char *
2002-03-02 17:59:35 +03:00
nameof(struct message *mp, int reptype)
1993-03-21 12:45:37 +03:00
{
char *cp, *cp2;
1993-03-21 12:45:37 +03:00
cp = skin(name1(mp, reptype));
if (reptype != 0 || charcount(cp, '!') < 2)
return(cp);
cp2 = strrchr(cp, '!');
1993-03-21 12:45:37 +03:00
cp2--;
while (cp2 > cp && *cp2 != '!')
cp2--;
if (*cp2 == '!')
return(cp2 + 1);
return(cp);
}
/*
* Start of a "comment".
* Ignore it.
*/
char *
2002-03-02 17:59:35 +03:00
skip_comment(char *cp)
1993-03-21 12:45:37 +03:00
{
int nesting = 1;
1993-03-21 12:45:37 +03:00
for (; nesting > 0 && *cp; cp++) {
switch (*cp) {
case '\\':
if (cp[1])
cp++;
break;
case '(':
nesting++;
break;
case ')':
nesting--;
break;
}
}
return cp;
}
/*
* Skin an arpa net address according to the RFC 822 interpretation
* of "host-phrase."
*/
char *
2002-03-02 17:59:35 +03:00
skin(char *name)
1993-03-21 12:45:37 +03:00
{
int c;
char *cp, *cp2;
1993-03-21 12:45:37 +03:00
char *bufend;
int gotlt, lastsp;
char nbuf[BUFSIZ];
if (name == NULL)
return(NULL);
if (strchr(name, '(') == NULL && strchr(name, '<') == NULL
&& strchr(name, ' ') == NULL)
1993-03-21 12:45:37 +03:00
return(name);
gotlt = 0;
lastsp = 0;
bufend = nbuf;
for (cp = name, cp2 = bufend; (c = *cp++) != '\0'; ) {
1993-03-21 12:45:37 +03:00
switch (c) {
case '(':
cp = skip_comment(cp);
lastsp = 0;
break;
case '"':
/*
* Start of a "quoted-string".
* Copy it in its entirety.
*/
while ((c = *cp) != '\0') {
1993-03-21 12:45:37 +03:00
cp++;
if (c == '"')
break;
if (c != '\\')
*cp2++ = c;
else if ((c = *cp) != '\0') {
1993-03-21 12:45:37 +03:00
*cp2++ = c;
cp++;
}
}
lastsp = 0;
break;
case ' ':
if (cp[0] == 'a' && cp[1] == 't' && cp[2] == ' ')
cp += 3, *cp2++ = '@';
else
if (cp[0] == '@' && cp[1] == ' ')
cp += 2, *cp2++ = '@';
else
lastsp = 1;
break;
case '<':
cp2 = bufend;
gotlt++;
lastsp = 0;
break;
case '>':
if (gotlt) {
gotlt = 0;
while ((c = *cp) && c != ',') {
cp++;
if (c == '(')
cp = skip_comment(cp);
else if (c == '"')
while ((c = *cp) != '\0') {
1993-03-21 12:45:37 +03:00
cp++;
if (c == '"')
break;
if (c == '\\' && *cp)
cp++;
}
}
lastsp = 0;
break;
}
/* Fall into . . . */
default:
if (lastsp) {
lastsp = 0;
*cp2++ = ' ';
}
*cp2++ = c;
if (c == ',' && !gotlt) {
*cp2++ = ' ';
for (; *cp == ' '; cp++)
;
lastsp = 0;
bufend = cp2;
}
}
}
*cp2 = 0;
return(savestr(nbuf));
}
/*
* Fetch the sender's name from the passed message.
* Reptype can be
* 0 -- get sender's name for display purposes
* 1 -- get sender's name for reply
* 2 -- get sender's name for Reply
*/
char *
2002-03-02 17:59:35 +03:00
name1(struct message *mp, int reptype)
1993-03-21 12:45:37 +03:00
{
char namebuf[LINESIZE];
char linebuf[LINESIZE];
char *cp, *cp2;
FILE *ibuf;
2002-03-02 18:27:51 +03:00
int firstrun = 1;
1993-03-21 12:45:37 +03:00
if ((cp = hfield("from", mp)) != NULL)
1993-03-21 12:45:37 +03:00
return cp;
if (reptype == 0 && (cp = hfield("sender", mp)) != NULL)
1993-03-21 12:45:37 +03:00
return cp;
ibuf = setinput(mp);
namebuf[0] = '\0';
1993-03-21 12:45:37 +03:00
if (readline(ibuf, linebuf, LINESIZE) < 0)
return(savestr(namebuf));
newname:
for (cp = linebuf; *cp && *cp != ' '; cp++)
;
for (; *cp == ' ' || *cp == '\t'; cp++)
;
for (cp2 = &namebuf[strlen(namebuf)];
*cp && *cp != ' ' && *cp != '\t' && cp2 < namebuf + LINESIZE - 1;)
*cp2++ = *cp++;
*cp2 = '\0';
if (readline(ibuf, linebuf, LINESIZE) < 0)
return(savestr(namebuf));
if ((cp = strchr(linebuf, 'F')) == NULL)
1993-03-21 12:45:37 +03:00
return(savestr(namebuf));
if (strncmp(cp, "From", 4) != 0)
return(savestr(namebuf));
while ((cp = strchr(cp, 'r')) != NULL) {
1993-03-21 12:45:37 +03:00
if (strncmp(cp, "remote", 6) == 0) {
if ((cp = strchr(cp, 'f')) == NULL)
1993-03-21 12:45:37 +03:00
break;
if (strncmp(cp, "from", 4) != 0)
break;
if ((cp = strchr(cp, ' ')) == NULL)
1993-03-21 12:45:37 +03:00
break;
cp++;
2002-03-02 18:27:51 +03:00
if (firstrun) {
cp2 = namebuf;
2002-03-02 18:27:51 +03:00
firstrun = 0;
1993-03-21 12:45:37 +03:00
} else
cp2 = strrchr(namebuf, '!') + 1;
while (*cp && cp2 < namebuf + LINESIZE - 1)
*cp2++ = *cp++;
if (cp2 < namebuf + LINESIZE - 1)
*cp2++ = '!';
*cp2 = '\0';
if (cp2 < namebuf + LINESIZE - 1)
goto newname;
else
break;
1993-03-21 12:45:37 +03:00
}
cp++;
}
return(savestr(namebuf));
}
/*
* Count the occurances of c in str
*/
1994-06-29 09:09:04 +04:00
int
2002-03-02 17:59:35 +03:00
charcount(char *str, int c)
1993-03-21 12:45:37 +03:00
{
char *cp;
int i;
1993-03-21 12:45:37 +03:00
for (i = 0, cp = str; *cp; cp++)
if (*cp == c)
i++;
return(i);
}
/*
* Convert c to upper case
*/
1994-06-29 09:09:04 +04:00
int
2002-03-02 17:59:35 +03:00
upcase(int c)
1993-03-21 12:45:37 +03:00
{
if (islower(c))
return toupper(c);
return c;
}
/*
* Copy s1 to s2, return pointer to null in s2.
*/
char *
2002-03-02 17:59:35 +03:00
copy(char *s1, char *s2)
1993-03-21 12:45:37 +03:00
{
while ((*s2++ = *s1++) != '\0')
1993-03-21 12:45:37 +03:00
;
return s2 - 1;
}
/*
* See if the given header field is supposed to be ignored.
*/
1994-06-29 09:09:04 +04:00
int
2002-03-02 18:27:51 +03:00
isign(char *field, struct ignoretab ignoretabs[2])
1993-03-21 12:45:37 +03:00
{
char realfld[LINESIZE];
1993-03-21 12:45:37 +03:00
2002-03-02 18:27:51 +03:00
if (ignoretabs == ignoreall)
1993-03-21 12:45:37 +03:00
return 1;
/*
* Lower-case the string, so that "Status" and "status"
* will hash to the same place.
*/
istrcpy(realfld, field);
2002-03-02 18:27:51 +03:00
if (ignoretabs[1].i_count > 0)
return (!member(realfld, ignoretabs + 1));
1993-03-21 12:45:37 +03:00
else
2002-03-02 18:27:51 +03:00
return (member(realfld, ignoretabs));
1993-03-21 12:45:37 +03:00
}
1994-06-29 09:09:04 +04:00
int
2002-03-02 17:59:35 +03:00
member(char *realfield, struct ignoretab *table)
1993-03-21 12:45:37 +03:00
{
struct ignore *igp;
1993-03-21 12:45:37 +03:00
for (igp = table->i_head[hash(realfield)]; igp != 0; igp = igp->i_link)
if (*igp->i_field == *realfield &&
equal(igp->i_field, realfield))
return (1);
return (0);
}