NetBSD/usr.bin/calendar/calendar.c

566 lines
12 KiB
C
Raw Normal View History

/* $NetBSD: calendar.c,v 1.42 2007/12/15 19:44:49 perry Exp $ */
1995-03-27 12:46:11 +04:00
1993-03-21 12:45:37 +03:00
/*
1995-03-27 12:46:11 +04:00
* Copyright (c) 1989, 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) 1989, 1993\n\
The Regents of the University of California. All rights reserved.\n");
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#ifndef lint
1995-03-27 12:46:11 +04:00
#if 0
1995-09-02 09:38:38 +04:00
static char sccsid[] = "@(#)calendar.c 8.4 (Berkeley) 1/7/95";
1995-03-27 12:46:11 +04:00
#endif
__RCSID("$NetBSD: calendar.c,v 1.42 2007/12/15 19:44:49 perry Exp $");
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#include <sys/param.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <sys/uio.h>
1995-03-27 12:46:11 +04:00
#include <sys/wait.h>
#include <ctype.h>
#include <err.h>
1993-03-21 12:45:37 +03:00
#include <errno.h>
1995-03-27 12:46:11 +04:00
#include <fcntl.h>
#include <pwd.h>
1993-03-21 12:45:37 +03:00
#include <stdio.h>
1995-03-27 12:46:11 +04:00
#include <stdlib.h>
1993-03-21 12:45:37 +03:00
#include <string.h>
#include <time.h>
1995-03-27 12:46:11 +04:00
#include <tzfile.h>
#include <unistd.h>
1993-03-21 12:45:37 +03:00
#include "pathnames.h"
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
static unsigned short lookahead = 1, weekend = 2;
static char *fname = NULL, *datestr = NULL;
static char *defaultnames[] = {"calendar", ".calendar", _PATH_SYSTEM_CALENDAR, NULL};
static struct passwd *pw;
static int doall;
static char path[MAXPATHLEN + 1];
static int cpp_restricted = 0;
/* 1-based month, 0-based days, cumulative */
static int daytab[][14] = {
{ 0, -1, 30, 58, 89, 119, 150, 180, 211, 242, 272, 303, 333, 364 },
{ 0, -1, 30, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 },
};
static struct tm *tp;
static int *cumdays, offset, yrdays;
static char dayname[10];
static struct iovec header[] = {
{ "From: ", 6 },
{ NULL, 0 },
{ " (Reminder Service)\nTo: ", 24 },
{ NULL, 0 },
{ "\nSubject: ", 10 },
{ NULL, 0 },
{ "'s Calendar\nPrecedence: bulk\n\n", 30 },
};
static char *days[] = {
"sun", "mon", "tue", "wed", "thu", "fri", "sat", NULL,
};
static char *months[] = {
"jan", "feb", "mar", "apr", "may", "jun",
"jul", "aug", "sep", "oct", "nov", "dec", NULL,
};
int main(int, char **);
static void atodays(int, char *, unsigned short *);
static void cal(void);
static void closecal(FILE *);
static int getday(char *);
static int getfield(char *, char **, int *);
static void getmmdd(struct tm *, char *);
static int getmonth(char *);
static int isnow(char *);
static FILE *opencal(void);
static void settime(void);
static void usage(void) __dead;
1995-03-27 12:46:11 +04:00
int
1993-03-21 12:45:37 +03:00
main(argc, argv)
int argc;
1995-03-27 12:46:11 +04:00
char *argv[];
1993-03-21 12:45:37 +03:00
{
int ch;
1998-07-28 23:22:54 +04:00
const char *caldir;
1993-03-21 12:45:37 +03:00
while ((ch = getopt(argc, argv, "-ad:f:l:w:x")) != -1)
1995-03-27 12:46:11 +04:00
switch (ch) {
1993-03-21 12:45:37 +03:00
case '-': /* backward contemptible */
case 'a':
if (getuid()) {
1995-03-27 12:46:11 +04:00
errno = EPERM;
err(1, NULL);
1993-03-21 12:45:37 +03:00
}
doall = 1;
break;
case 'd':
datestr = optarg;
break;
case 'f':
fname = optarg;
break;
case 'l':
atodays(ch, optarg, &lookahead);
break;
case 'w':
atodays(ch, optarg, &weekend);
break;
case 'x':
cpp_restricted = 1;
break;
1993-03-21 12:45:37 +03:00
case '?':
default:
usage();
}
argc -= optind;
argv += optind;
if (argc)
usage();
settime();
if (doall) {
1995-03-27 12:46:11 +04:00
while ((pw = getpwent()) != NULL) {
1993-03-21 12:45:37 +03:00
(void)setegid(pw->pw_gid);
(void)seteuid(pw->pw_uid);
if (!chdir(pw->pw_dir))
cal();
(void)seteuid(0);
}
} else if ((caldir = getenv("CALENDAR_DIR")) != NULL) {
if(!chdir(caldir))
cal();
} else {
if (((pw = getpwuid(geteuid())) != NULL) && !chdir(pw->pw_dir))
cal();
}
1993-03-21 12:45:37 +03:00
exit(0);
}
static void
cal(void)
1993-03-21 12:45:37 +03:00
{
2005-06-02 05:35:57 +04:00
int printing = 0;
1995-03-27 12:46:11 +04:00
FILE *fp;
char *line;
1993-03-21 12:45:37 +03:00
1995-03-27 12:46:11 +04:00
if ((fp = opencal()) == NULL)
1993-03-21 12:45:37 +03:00
return;
while ((line = fparseln(stdin, NULL, NULL, NULL, FPARSELN_UNESCCOMM))
!= NULL) {
if (line[0] == '\0')
1993-03-21 12:45:37 +03:00
continue;
if (line[0] != '\t')
printing = isnow(line) ? 1 : 0;
1993-03-21 12:45:37 +03:00
if (printing)
(void)fprintf(fp, "%s\n", line);
free(line);
1993-03-21 12:45:37 +03:00
}
closecal(fp);
}
static void
settime(void)
1993-03-21 12:45:37 +03:00
{
1995-03-27 12:46:11 +04:00
time_t now;
1993-03-21 12:45:37 +03:00
(void)time(&now);
tp = localtime(&now);
if (datestr) {
getmmdd(tp, datestr);
}
1998-02-04 18:19:50 +03:00
if (isleap(tp->tm_year + TM_YEAR_BASE)) {
1993-03-21 12:45:37 +03:00
yrdays = DAYSPERLYEAR;
cumdays = daytab[1];
} else {
yrdays = DAYSPERNYEAR;
cumdays = daytab[0];
}
/* Friday displays Monday's events */
offset = tp->tm_wday == 5 ? lookahead + weekend : lookahead;
1993-03-21 12:45:37 +03:00
header[5].iov_base = dayname;
header[5].iov_len = strftime(dayname, sizeof(dayname), "%A", tp);
}
/*
* Possible date formats include any combination of:
* 3-charmonth (January, Jan, Jan)
* 3-charweekday (Friday, Monday, mon.)
* numeric month or day (1, 2, 04)
*
* Any character may separate them, or they may not be separated. Any line,
* following a line that is matched, that starts with "whitespace", is shown
* along with the matched line.
*/
static int
1993-03-21 12:45:37 +03:00
isnow(endp)
char *endp;
{
int day, flags, month, v1, v2;
#define F_ISMONTH 0x01
#define F_ISDAY 0x02
#define F_WILDMONTH 0x04
#define F_WILDDAY 0x08
1993-03-21 12:45:37 +03:00
flags = 0;
1993-03-21 12:45:37 +03:00
/* didn't recognize anything, skip it */
if (!(v1 = getfield(endp, &endp, &flags)))
1995-03-27 12:46:11 +04:00
return (0);
if (flags & F_ISDAY || v1 > 12) {
1993-03-21 12:45:37 +03:00
/* found a day */
day = v1;
v2 = getfield(endp, &endp, &flags);
month = v2;
1995-03-27 12:46:11 +04:00
} else if (flags & F_ISMONTH) {
1993-03-21 12:45:37 +03:00
month = v1;
/* if no recognizable day, assume the first */
if (!(day = getfield(endp, &endp, &flags)))
day = 1;
} else {
v2 = getfield(endp, &endp, &flags);
1995-03-27 12:46:11 +04:00
if (flags & F_ISMONTH) {
1993-03-21 12:45:37 +03:00
day = v1;
month = v2;
} else {
/* F_ISDAY set, v2 > 12, or no way to tell */
month = v1;
/* if no recognizable day, assume the first */
day = v2 ? v2 : 1;
}
}
if ((flags & F_WILDMONTH) && (flags & F_WILDDAY))
return (1);
if ((flags & F_WILDMONTH) && (flags & F_ISDAY) && (day == tp->tm_mday))
return (1);
if (((flags & F_ISMONTH) && (flags & F_WILDDAY)) && (month == tp->tm_mon + 1))
return (1);
1995-03-27 12:46:11 +04:00
if (flags & F_ISDAY)
day = tp->tm_mday + (((day - 1) - tp->tm_wday + 7) % 7);
1993-03-21 12:45:37 +03:00
day = cumdays[month] + day;
/* if today or today + offset days */
if (day >= tp->tm_yday && day <= tp->tm_yday + offset)
1995-03-27 12:46:11 +04:00
return (1);
1993-03-21 12:45:37 +03:00
/* if number of days left in this year + days to event in next year */
if (yrdays - tp->tm_yday + day <= offset)
1995-03-27 12:46:11 +04:00
return (1);
return (0);
1993-03-21 12:45:37 +03:00
}
static int
1993-03-21 12:45:37 +03:00
getfield(p, endp, flags)
char *p, **endp;
int *flags;
{
int val;
char *start, savech;
#define FLDCHAR(a) (*p != '\0' && !isdigit((unsigned char)*p) && \
!isalpha((unsigned char)*p) && *p != '*')
for (; FLDCHAR(*p); ++p)
continue;
1993-03-21 12:45:37 +03:00
if (*p == '*') { /* `*' is current month */
if (!(*flags & F_ISMONTH)) {
*flags |= F_ISMONTH|F_WILDMONTH;
*endp = p+1;
return (tp->tm_mon + 1);
} else {
*flags |= F_ISDAY|F_WILDDAY;
*endp = p+1;
return (1);
}
1993-03-21 12:45:37 +03:00
}
if (isdigit((unsigned char)*p)) {
1993-03-21 12:45:37 +03:00
val = strtol(p, &p, 10); /* if 0, it's failure */
for (; FLDCHAR(*p); ++p)
continue;
1993-03-21 12:45:37 +03:00
*endp = p;
1995-03-27 12:46:11 +04:00
return (val);
1993-03-21 12:45:37 +03:00
}
for (start = p; *p != '\0' && isalpha((unsigned char)*++p);)
continue;
1993-03-21 12:45:37 +03:00
savech = *p;
*p = '\0';
if ((val = getmonth(start)) != 0) {
1993-03-21 12:45:37 +03:00
*flags |= F_ISMONTH;
} else if ((val = getday(start)) != 0) {
1993-03-21 12:45:37 +03:00
*flags |= F_ISDAY;
} else {
*p = savech;
1995-03-27 12:46:11 +04:00
return (0);
}
for (*p = savech; FLDCHAR(*p); ++p)
continue;
1993-03-21 12:45:37 +03:00
*endp = p;
1995-03-27 12:46:11 +04:00
return (val);
1993-03-21 12:45:37 +03:00
}
static FILE *
opencal(void)
1993-03-21 12:45:37 +03:00
{
int fd, pdes[2];
char **name;
1993-03-21 12:45:37 +03:00
/* open up calendar file as stdin */
if (fname == NULL) {
for (name = defaultnames; *name != NULL; name++) {
if (!freopen(*name, "rf", stdin))
continue;
else
break;
}
if (*name == NULL) {
if (doall)
return (NULL);
err(1, "Cannot open calendar file");
}
} else if (!freopen(fname, "rf", stdin)) {
1993-03-21 12:45:37 +03:00
if (doall)
1995-03-27 12:46:11 +04:00
return (NULL);
err(1, "Cannot open `%s'", fname);
1993-03-21 12:45:37 +03:00
}
if (pipe(pdes) < 0) {
warn("Cannot open pipe");
1995-03-27 12:46:11 +04:00
return (NULL);
}
switch (fork()) {
1993-03-21 12:45:37 +03:00
case -1: /* error */
(void)close(pdes[0]);
(void)close(pdes[1]);
1995-03-27 12:46:11 +04:00
return (NULL);
1993-03-21 12:45:37 +03:00
case 0:
/* child -- stdin already setup, set stdout to pipe input */
if (pdes[1] != STDOUT_FILENO) {
(void)dup2(pdes[1], STDOUT_FILENO);
(void)close(pdes[1]);
}
(void)close(pdes[0]);
/* tell CPP to only open regular files */
if(!cpp_restricted && setenv("CPP_RESTRICTED", "", 1))
err(1, "Cannot restrict cpp");
cpp_restricted = 1;
(void)execl(_PATH_CPP, "cpp", "-traditional", "-P", "-I.",
"-I" _PATH_CALENDARS, NULL);
err(1, "Cannot exec `%s'", _PATH_CPP);
/*NOTREACHED*/
1993-03-21 12:45:37 +03:00
}
1993-03-21 12:45:37 +03:00
/* parent -- set stdin to pipe output */
(void)dup2(pdes[0], STDIN_FILENO);
(void)close(pdes[0]);
(void)close(pdes[1]);
/* not reading all calendar files, just set output to stdout */
if (!doall)
1995-03-27 12:46:11 +04:00
return (stdout);
1993-03-21 12:45:37 +03:00
/* set output to a temporary file, so if no output don't send mail */
1995-03-27 12:46:11 +04:00
(void)snprintf(path, sizeof(path), "%s/_calXXXXXX", _PATH_TMP);
if ((fd = mkstemp(path)) < 0) {
warn("Cannot create temporary file");
1995-03-27 12:46:11 +04:00
return (NULL);
}
1995-03-27 12:46:11 +04:00
return (fdopen(fd, "w+"));
1993-03-21 12:45:37 +03:00
}
static void
1993-03-21 12:45:37 +03:00
closecal(fp)
FILE *fp;
{
struct stat sbuf;
int nread, pdes[2], status;
1995-03-27 12:46:11 +04:00
char buf[1024];
1993-03-21 12:45:37 +03:00
if (!doall)
return;
(void)rewind(fp);
if (fstat(fileno(fp), &sbuf) || !sbuf.st_size)
goto done;
if (pipe(pdes) < 0)
1993-03-21 12:45:37 +03:00
goto done;
switch (fork()) {
1993-03-21 12:45:37 +03:00
case -1: /* error */
(void)close(pdes[0]);
(void)close(pdes[1]);
goto done;
case 0:
1993-03-21 12:45:37 +03:00
/* child -- set stdin to pipe output */
if (pdes[0] != STDIN_FILENO) {
(void)dup2(pdes[0], STDIN_FILENO);
(void)close(pdes[0]);
}
(void)close(pdes[1]);
(void)execl(_PATH_SENDMAIL, "sendmail", "-i", "-t", "-F",
1993-03-21 12:45:37 +03:00
"\"Reminder Service\"", "-f", "root", NULL);
err(1, "Cannot exec `%s'", _PATH_SENDMAIL);
/*NOTREACHED*/
1993-03-21 12:45:37 +03:00
}
/* parent -- write to pipe input */
(void)close(pdes[0]);
1998-07-27 11:41:31 +04:00
header[1].iov_base = header[3].iov_base = (void *)pw->pw_name;
1993-03-21 12:45:37 +03:00
header[1].iov_len = header[3].iov_len = strlen(pw->pw_name);
writev(pdes[1], header, 7);
while ((nread = read(fileno(fp), buf, sizeof(buf))) > 0)
(void)write(pdes[1], buf, nread);
(void)close(pdes[1]);
1993-03-21 12:45:37 +03:00
done: (void)fclose(fp);
(void)unlink(path);
while (wait(&status) >= 0)
continue;
1993-03-21 12:45:37 +03:00
}
static int
1993-03-21 12:45:37 +03:00
getmonth(s)
char *s;
1993-03-21 12:45:37 +03:00
{
char **p;
1993-03-21 12:45:37 +03:00
for (p = months; *p; ++p)
if (!strncasecmp(s, *p, 3))
1995-03-27 12:46:11 +04:00
return ((p - months) + 1);
return (0);
1993-03-21 12:45:37 +03:00
}
static int
1993-03-21 12:45:37 +03:00
getday(s)
char *s;
1993-03-21 12:45:37 +03:00
{
char **p;
1993-03-21 12:45:37 +03:00
for (p = days; *p; ++p)
if (!strncasecmp(s, *p, 3))
1995-03-27 12:46:11 +04:00
return ((p - days) + 1);
return (0);
1993-03-21 12:45:37 +03:00
}
static void
atodays(int ch, char *optarg, unsigned short *days)
{
int u;
u = atoi(optarg);
if ((u < 0) || (u > 366)) {
warnx("-%c %d out of range 0-366, ignored.", ch, u);
} else {
*days = u;
}
}
#define todigit(x) ((x) - '0')
#define ATOI2(x) (todigit((x)[0]) * 10 + todigit((x)[1]))
#define ISDIG2(x) (isdigit((unsigned char)(x)[0]) && isdigit((unsigned char)(x)[1]))
static void
getmmdd(struct tm *tp, char *ds)
{
int ok = FALSE;
struct tm ttm;
ttm = *tp;
ttm.tm_isdst = -1;
if (ISDIG2(ds)) {
ttm.tm_mon = ATOI2(ds) - 1;
ds += 2;
}
if (ISDIG2(ds)) {
ttm.tm_mday = ATOI2(ds);
ds += 2;
ok = TRUE;
}
if (ok) {
if (ISDIG2(ds) && ISDIG2(ds + 2)) {
1998-02-04 18:19:50 +03:00
ttm.tm_year = ATOI2(ds) * 100 - TM_YEAR_BASE;
ds += 2;
ttm.tm_year += ATOI2(ds);
} else if (ISDIG2(ds)) {
ttm.tm_year = ATOI2(ds);
1998-02-04 18:19:50 +03:00
if (ttm.tm_year < 69)
ttm.tm_year += 2000 - TM_YEAR_BASE;
else
ttm.tm_year += 1900 - TM_YEAR_BASE;
}
}
if (ok && (mktime(&ttm) < 0)) {
ok = FALSE;
}
if (ok) {
*tp = ttm;
} else {
warnx("Can't convert `%s' to date, ignored.", ds);
usage();
}
}
static void
usage(void)
1993-03-21 12:45:37 +03:00
{
(void)fprintf(stderr, "usage: %s [-ax] [-d MMDD[[YY]YY]"
" [-f fname] [-l days] [-w days]\n", getprogname());
1993-03-21 12:45:37 +03:00
exit(1);
}