NetBSD/libexec/mail.local/mail.local.c

320 lines
7.8 KiB
C
Raw Normal View History

2006-09-27 21:15:20 +04:00
/* $NetBSD: mail.local.c,v 1.23 2006/09/27 17:15:20 christos Exp $ */
1997-04-21 15:29:26 +04:00
1993-03-21 12:45:37 +03:00
/*-
* Copyright (c) 1990, 1993, 1994
* 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
__COPYRIGHT("@(#) Copyright (c) 1990, 1993, 1994\n\
The Regents of the University of California. All rights reserved.\n");
#if 0
static char sccsid[] = "@(#)mail.local.c 8.22 (Berkeley) 6/21/95";
#else
2006-09-27 21:15:20 +04:00
__RCSID("$NetBSD: mail.local.c,v 1.23 2006/09/27 17:15:20 christos Exp $");
#endif
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#include <sys/param.h>
#include <sys/stat.h>
#include <sys/socket.h>
1993-03-21 12:45:37 +03:00
#include <netinet/in.h>
#include <errno.h>
1993-03-21 12:45:37 +03:00
#include <fcntl.h>
#include <pwd.h>
#include <netdb.h>
2002-05-26 04:02:06 +04:00
#include <stdarg.h>
1993-03-21 12:45:37 +03:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
#include <time.h>
#include <unistd.h>
1993-03-21 12:45:37 +03:00
#include "pathnames.h"
#define FATAL 1
#define NOTFATAL 0
int deliver __P((int, char *, int));
2000-10-10 23:54:37 +04:00
void err __P((int, const char *, ...))
__attribute__((__format__(__printf__, 2, 3)));
1993-03-21 12:45:37 +03:00
void notifybiff __P((char *));
1998-07-26 23:44:12 +04:00
int store __P((const char *));
1993-03-21 12:45:37 +03:00
void usage __P((void));
int main __P((int, char **));
1993-03-21 12:45:37 +03:00
int
1993-03-21 12:45:37 +03:00
main(argc, argv)
int argc;
char **argv;
{
struct passwd *pw;
int ch, fd, eval, lockfile = 0;
1993-03-21 12:45:37 +03:00
uid_t uid;
1998-07-26 23:44:12 +04:00
const char *from;
1993-03-21 12:45:37 +03:00
/* use a reasonable umask */
(void) umask(0077);
1993-03-21 12:45:37 +03:00
openlog("mail.local", LOG_PERROR, LOG_MAIL);
from = NULL;
while ((ch = getopt(argc, argv, "ldf:r:")) != -1)
switch (ch) {
1993-03-21 12:45:37 +03:00
case 'd': /* backward compatible */
break;
case 'f':
case 'r': /* backward compatible */
if (from)
1997-04-21 15:29:26 +04:00
err(FATAL, "multiple -f options");
1993-03-21 12:45:37 +03:00
from = optarg;
break;
case 'l':
lockfile++;
break;
1993-03-21 12:45:37 +03:00
case '?':
default:
usage();
}
argc -= optind;
argv += optind;
if (!*argv)
usage();
/*
* If from not specified, use the name from getlogin() if the
* uid matches, otherwise, use the name from the password file
* corresponding to the uid.
*/
uid = getuid();
if (!from && (!(from = getlogin()) ||
!(pw = getpwnam(from)) || pw->pw_uid != uid))
from = (pw = getpwuid(uid)) ? pw->pw_name : "???";
fd = store(from);
for (eval = 0; *argv; ++argv)
eval |= deliver(fd, *argv, lockfile);
1997-04-21 15:29:26 +04:00
exit (eval);
1993-03-21 12:45:37 +03:00
}
1997-04-21 15:29:26 +04:00
int
1993-03-21 12:45:37 +03:00
store(from)
1998-07-26 23:44:12 +04:00
const char *from;
1993-03-21 12:45:37 +03:00
{
FILE *fp = NULL; /* XXX gcc */
1993-03-21 12:45:37 +03:00
time_t tval;
int fd, eline;
char *tn, line[2048];
tn = strdup(_PATH_LOCTMP);
2002-11-16 18:41:17 +03:00
if (!tn)
err(FATAL, "not enough core");
1993-03-21 12:45:37 +03:00
if ((fd = mkstemp(tn)) == -1 || !(fp = fdopen(fd, "w+")))
err(FATAL, "unable to open temporary file");
(void)unlink(tn);
free(tn);
(void)time(&tval);
(void)fprintf(fp, "From %s %s", from, ctime(&tval));
line[0] = '\0';
for (eline = 1; fgets(line, sizeof(line), stdin);) {
if (line[0] == '\n')
eline = 1;
else {
if (eline && line[0] == 'F' && !memcmp(line, "From ", 5))
1993-03-21 12:45:37 +03:00
(void)putc('>', fp);
eline = 0;
}
(void)fprintf(fp, "%s", line);
if (ferror(fp))
break;
}
/* If message not newline terminated, need an extra. */
if (!index(line, '\n'))
(void)putc('\n', fp);
/* Output a newline; note, empty messages are allowed. */
(void)putc('\n', fp);
(void)fflush(fp);
if (ferror(fp))
err(FATAL, "temporary file write error");
2006-09-27 21:15:20 +04:00
fd = dup(fd);
(void)fclose(fp);
1993-03-21 12:45:37 +03:00
return(fd);
}
1997-04-21 15:29:26 +04:00
int
deliver(fd, name, lockfile)
1993-03-21 12:45:37 +03:00
int fd;
char *name;
int lockfile;
1993-03-21 12:45:37 +03:00
{
struct stat sb;
struct passwd *pw;
int created, mbfd, nr, nw, off, rval=0, lfd=-1;
char biffmsg[100], buf[8*1024], path[MAXPATHLEN], lpath[MAXPATHLEN];
1994-04-19 17:28:29 +04:00
off_t curoff;
1993-03-21 12:45:37 +03:00
/*
* Disallow delivery to unknown names -- special mailboxes can be
* handled in the sendmail aliases file.
*/
if (!(pw = getpwnam(name))) {
err(NOTFATAL, "unknown name: %s", name);
return(1);
}
1997-04-21 15:29:26 +04:00
(void)snprintf(path, sizeof path, "%s/%s", _PATH_MAILDIR, name);
1993-03-21 12:45:37 +03:00
1997-04-21 15:29:26 +04:00
if (lockfile) {
(void)snprintf(lpath, sizeof lpath, "%s/%s.lock",
_PATH_MAILDIR, name);
if((lfd = open(lpath, O_CREAT|O_WRONLY|O_EXCL,
S_IRUSR|S_IWUSR)) < 0) {
err(NOTFATAL, "%s: %s", lpath, strerror(errno));
return(1);
}
}
1993-03-21 12:45:37 +03:00
if (!(created = lstat(path, &sb)) &&
(sb.st_nlink != 1 || S_ISLNK(sb.st_mode))) {
err(NOTFATAL, "%s: linked file", path);
return(1);
}
1997-04-21 15:29:26 +04:00
if ((mbfd = open(path, O_APPEND|O_WRONLY|O_EXLOCK,
S_IRUSR|S_IWUSR)) < 0) {
if ((mbfd = open(path, O_APPEND|O_CREAT|O_WRONLY|O_EXLOCK,
S_IRUSR|S_IWUSR)) < 0) {
1997-04-21 15:29:26 +04:00
err(NOTFATAL, "%s: %s", path, strerror(errno));
return(1);
}
1993-03-21 12:45:37 +03:00
}
1994-04-19 17:28:29 +04:00
curoff = lseek(mbfd, 0, SEEK_END);
(void)snprintf(biffmsg, sizeof biffmsg, "%s@%lld\n", name,
1997-10-07 17:13:41 +04:00
(long long)curoff);
1994-04-19 17:28:29 +04:00
if (lseek(fd, 0, SEEK_SET) == (off_t)-1) {
1993-03-21 12:45:37 +03:00
err(FATAL, "temporary file: %s", strerror(errno));
rval = 1;
goto bad;
}
while ((nr = read(fd, buf, sizeof(buf))) > 0)
1993-08-01 04:06:15 +04:00
for (off = 0; off < nr; off += nw)
if ((nw = write(mbfd, buf + off, nr - off)) < 0) {
1993-03-21 12:45:37 +03:00
err(NOTFATAL, "%s: %s", path, strerror(errno));
goto trunc;
}
if (nr < 0) {
err(FATAL, "temporary file: %s", strerror(errno));
trunc: (void)ftruncate(mbfd, curoff);
rval = 1;
}
/*
* Set the owner and group. Historically, binmail repeated this at
* each mail delivery. We no longer do this, assuming that if the
* ownership or permissions were changed there was a reason for doing
* so.
*/
bad:
1997-04-21 15:29:26 +04:00
if (lockfile) {
if (lfd >= 0) {
unlink(lpath);
close(lfd);
}
}
if (created)
1993-03-21 12:45:37 +03:00
(void)fchown(mbfd, pw->pw_uid, pw->pw_gid);
(void)fsync(mbfd); /* Don't wait for update. */
(void)close(mbfd); /* Implicit unlock. */
if (!rval)
notifybiff(biffmsg);
return(rval);
}
void
notifybiff(msg)
char *msg;
{
static struct sockaddr_in addr;
static int f = -1;
struct hostent *hp;
struct servent *sp;
int len;
if (!addr.sin_family) {
/* Be silent if biff service not available. */
if (!(sp = getservbyname("biff", "udp")))
return;
if (!(hp = gethostbyname("localhost"))) {
err(NOTFATAL, "localhost: %s", strerror(errno));
return;
}
1995-06-04 02:47:20 +04:00
addr.sin_len = sizeof(struct sockaddr_in);
1993-03-21 12:45:37 +03:00
addr.sin_family = hp->h_addrtype;
addr.sin_port = sp->s_port;
memcpy(&addr.sin_addr, hp->h_addr, hp->h_length);
1993-03-21 12:45:37 +03:00
}
if (f < 0 && (f = socket(AF_INET, SOCK_DGRAM, 0)) == -1) {
err(NOTFATAL, "socket: %s", strerror(errno));
return;
}
len = strlen(msg) + 1;
if (sendto(f, msg, len, 0, (struct sockaddr *)&addr, sizeof(addr))
!= len)
err(NOTFATAL, "sendto biff: %s", strerror(errno));
}
void
usage()
{
err(FATAL, "usage: mail.local [-l] [-f from] user ...");
1993-03-21 12:45:37 +03:00
}
void
err(int isfatal, const char *fmt, ...)
{
va_list ap;
2002-05-26 04:02:06 +04:00
1993-03-21 12:45:37 +03:00
va_start(ap, fmt);
vsyslog(LOG_ERR, fmt, ap);
va_end(ap);
if (isfatal)
exit(1);
}