1996-02-02 06:02:41 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1989, 1993, 1994
|
|
|
|
* 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* 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
|
1996-05-10 16:30:22 +00:00
|
|
|
static const char copyright[] =
|
1996-02-02 06:02:41 +00:00
|
|
|
"@(#) Copyright (c) 1989, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n";
|
2001-12-02 22:44:14 +00:00
|
|
|
#endif
|
1996-02-02 06:02:41 +00:00
|
|
|
|
2001-12-10 21:13:08 +00:00
|
|
|
#if 0
|
1996-02-02 06:02:41 +00:00
|
|
|
#ifndef lint
|
2001-12-10 21:13:08 +00:00
|
|
|
static char sccsid[] = "@(#)calendar.c 8.3 (Berkeley) 3/25/94";
|
2001-12-02 22:44:14 +00:00
|
|
|
#endif
|
2001-12-10 21:13:08 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1996-02-02 06:02:41 +00:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
2001-12-02 22:44:14 +00:00
|
|
|
#include <sys/param.h>
|
1996-02-02 06:02:41 +00:00
|
|
|
#include <sys/stat.h>
|
2001-12-02 22:44:14 +00:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <ctype.h>
|
1996-02-02 06:02:41 +00:00
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
2001-03-21 15:41:02 +00:00
|
|
|
#include <langinfo.h>
|
1996-05-10 16:30:22 +00:00
|
|
|
#include <locale.h>
|
1996-02-02 06:02:41 +00:00
|
|
|
#include <pwd.h>
|
2001-12-02 22:44:14 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
1996-02-02 06:02:41 +00:00
|
|
|
|
|
|
|
#include "pathnames.h"
|
|
|
|
#include "calendar.h"
|
|
|
|
|
2008-08-05 08:16:37 +00:00
|
|
|
/*
|
|
|
|
* Event sorting related functions:
|
|
|
|
* - Use event_add() to create a new event
|
|
|
|
* - Use event_continue() to add more text to the last added event
|
|
|
|
* - Use event_print_all() to display them in time chronological order
|
|
|
|
*/
|
|
|
|
static struct event *event_add(struct event *, int, int, char *, int, char *);
|
|
|
|
static void event_continue(struct event *events, char *txt);
|
|
|
|
static void event_print_all(FILE *fp, struct event *events);
|
|
|
|
struct event {
|
|
|
|
int month;
|
|
|
|
int day;
|
|
|
|
int var;
|
|
|
|
char *date;
|
|
|
|
char *text;
|
|
|
|
struct event *next;
|
|
|
|
};
|
1996-02-02 06:02:41 +00:00
|
|
|
|
2008-08-05 08:11:54 +00:00
|
|
|
const char *calendarFile = "calendar"; /* default calendar file */
|
|
|
|
const char *calendarHomes[] = {".calendar", _PATH_INCLUDE}; /* HOME */
|
|
|
|
const char *calendarNoMail = "nomail"; /* don't sent mail if this file exist */
|
|
|
|
|
|
|
|
char path[MAXPATHLEN];
|
1996-02-02 06:02:41 +00:00
|
|
|
|
1996-05-10 17:32:06 +00:00
|
|
|
struct fixs neaster, npaskha;
|
|
|
|
|
1996-02-02 06:02:41 +00:00
|
|
|
struct iovec header[] = {
|
1996-05-10 16:30:22 +00:00
|
|
|
{"From: ", 6},
|
|
|
|
{NULL, 0},
|
|
|
|
{" (Reminder Service)\nTo: ", 24},
|
|
|
|
{NULL, 0},
|
|
|
|
{"\nSubject: ", 10},
|
|
|
|
{NULL, 0},
|
2008-08-05 08:11:54 +00:00
|
|
|
{"'s Calendar\nPrecedence: bulk\n\n", 30},
|
1996-02-02 06:02:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void
|
2007-05-07 11:18:30 +00:00
|
|
|
cal(void)
|
1996-02-02 06:02:41 +00:00
|
|
|
{
|
2001-12-02 22:44:14 +00:00
|
|
|
int printing;
|
|
|
|
char *p;
|
1996-02-02 06:02:41 +00:00
|
|
|
FILE *fp;
|
1996-05-10 16:30:22 +00:00
|
|
|
int ch, l;
|
1996-04-06 01:15:21 +00:00
|
|
|
int month;
|
|
|
|
int day;
|
|
|
|
int var;
|
2001-03-21 15:41:02 +00:00
|
|
|
static int d_first = -1;
|
1996-02-02 06:02:41 +00:00
|
|
|
char buf[2048 + 1];
|
2007-06-09 05:54:13 +00:00
|
|
|
struct event *events = NULL;
|
1996-02-02 06:02:41 +00:00
|
|
|
|
|
|
|
if ((fp = opencal()) == NULL)
|
|
|
|
return;
|
|
|
|
for (printing = 0; fgets(buf, sizeof(buf), stdin) != NULL;) {
|
|
|
|
if ((p = strchr(buf, '\n')) != NULL)
|
|
|
|
*p = '\0';
|
|
|
|
else
|
|
|
|
while ((ch = getchar()) != '\n' && ch != EOF);
|
1996-05-10 16:30:22 +00:00
|
|
|
for (l = strlen(buf);
|
|
|
|
l > 0 && isspace((unsigned char)buf[l - 1]);
|
|
|
|
l--)
|
|
|
|
;
|
|
|
|
buf[l] = '\0';
|
1996-02-02 06:02:41 +00:00
|
|
|
if (buf[0] == '\0')
|
|
|
|
continue;
|
1996-05-10 16:30:22 +00:00
|
|
|
if (strncmp(buf, "LANG=", 5) == 0) {
|
2008-08-05 08:11:54 +00:00
|
|
|
(void)setlocale(LC_ALL, buf + 5);
|
2001-03-21 15:41:02 +00:00
|
|
|
d_first = (*nl_langinfo(D_MD_ORDER) == 'd');
|
1996-05-10 16:30:22 +00:00
|
|
|
setnnames();
|
|
|
|
continue;
|
|
|
|
}
|
1996-05-10 17:32:06 +00:00
|
|
|
if (strncasecmp(buf, "Easter=", 7) == 0 && buf[7]) {
|
|
|
|
if (neaster.name != NULL)
|
|
|
|
free(neaster.name);
|
1997-06-23 06:52:13 +00:00
|
|
|
if ((neaster.name = strdup(buf + 7)) == NULL)
|
|
|
|
errx(1, "cannot allocate memory");
|
1996-05-10 17:32:06 +00:00
|
|
|
neaster.len = strlen(buf + 7);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (strncasecmp(buf, "Paskha=", 7) == 0 && buf[7]) {
|
|
|
|
if (npaskha.name != NULL)
|
|
|
|
free(npaskha.name);
|
1997-06-23 06:52:13 +00:00
|
|
|
if ((npaskha.name = strdup(buf + 7)) == NULL)
|
|
|
|
errx(1, "cannot allocate memory");
|
1996-05-10 17:32:06 +00:00
|
|
|
npaskha.len = strlen(buf + 7);
|
|
|
|
continue;
|
|
|
|
}
|
1996-04-06 01:15:21 +00:00
|
|
|
if (buf[0] != '\t') {
|
|
|
|
printing = isnow(buf, &month, &day, &var) ? 1 : 0;
|
|
|
|
if ((p = strchr(buf, '\t')) == NULL)
|
|
|
|
continue;
|
|
|
|
if (p > buf && p[-1] == '*')
|
|
|
|
var = 1;
|
1996-05-10 19:31:02 +00:00
|
|
|
if (printing) {
|
|
|
|
struct tm tm;
|
2001-03-21 15:41:02 +00:00
|
|
|
char dbuf[80];
|
1996-05-10 19:31:02 +00:00
|
|
|
|
2001-03-21 15:41:02 +00:00
|
|
|
if (d_first < 0)
|
2008-08-05 08:11:54 +00:00
|
|
|
d_first =
|
|
|
|
(*nl_langinfo(D_MD_ORDER) == 'd');
|
|
|
|
tm.tm_sec = 0; /* unused */
|
|
|
|
tm.tm_min = 0; /* unused */
|
|
|
|
tm.tm_hour = 0; /* unused */
|
|
|
|
tm.tm_wday = 0; /* unused */
|
1996-05-10 19:31:02 +00:00
|
|
|
tm.tm_mon = month - 1;
|
|
|
|
tm.tm_mday = day;
|
|
|
|
tm.tm_year = tp->tm_year; /* unused */
|
2001-03-21 15:41:02 +00:00
|
|
|
(void)strftime(dbuf, sizeof(dbuf),
|
2008-08-05 08:11:54 +00:00
|
|
|
d_first ? "%e %b" : "%b %e", &tm);
|
|
|
|
events = event_add(events, month, day, dbuf,
|
|
|
|
var, p);
|
1996-05-10 19:31:02 +00:00
|
|
|
}
|
2008-08-05 08:11:54 +00:00
|
|
|
} else {
|
|
|
|
if (printing)
|
|
|
|
event_continue(events, buf);
|
1996-04-06 01:15:21 +00:00
|
|
|
}
|
1996-02-02 06:02:41 +00:00
|
|
|
}
|
2007-06-09 05:54:13 +00:00
|
|
|
|
|
|
|
event_print_all(fp, events);
|
1996-02-02 06:02:41 +00:00
|
|
|
closecal(fp);
|
|
|
|
}
|
|
|
|
|
2008-08-05 08:16:37 +00:00
|
|
|
static struct event *
|
2008-08-05 08:11:54 +00:00
|
|
|
event_add(struct event *events, int month, int day,
|
|
|
|
char *date, int var, char *txt)
|
2007-06-09 05:54:13 +00:00
|
|
|
{
|
|
|
|
struct event *e;
|
|
|
|
|
2008-08-05 08:11:54 +00:00
|
|
|
/*
|
|
|
|
* Creating a new event:
|
|
|
|
* - Create a new event
|
|
|
|
* - Copy the machine readable day and month
|
|
|
|
* - Copy the human readable and language specific date
|
|
|
|
* - Copy the text of the event
|
|
|
|
*/
|
2007-06-09 05:54:13 +00:00
|
|
|
e = (struct event *)calloc(1, sizeof(struct event));
|
|
|
|
if (e == NULL)
|
|
|
|
errx(1, "event_add: cannot allocate memory");
|
|
|
|
e->month = month;
|
|
|
|
e->day = day;
|
|
|
|
e->var = var;
|
|
|
|
e->date = strdup(date);
|
|
|
|
if (e->date == NULL)
|
|
|
|
errx(1, "event_add: cannot allocate memory");
|
|
|
|
e->text = strdup(txt);
|
|
|
|
if (e->text == NULL)
|
|
|
|
errx(1, "event_add: cannot allocate memory");
|
|
|
|
e->next = events;
|
|
|
|
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
2008-08-05 08:16:37 +00:00
|
|
|
static void
|
2007-06-09 05:54:13 +00:00
|
|
|
event_continue(struct event *e, char *txt)
|
|
|
|
{
|
|
|
|
char *text;
|
|
|
|
|
2008-08-05 08:11:54 +00:00
|
|
|
/*
|
|
|
|
* Adding text to the event:
|
|
|
|
* - Save a copy of the old text (unknown length, so strdup())
|
|
|
|
* - Allocate enough space for old text + \n + new text + 0
|
|
|
|
* - Store the old text + \n + new text
|
|
|
|
* - Destroy the saved copy.
|
|
|
|
*/
|
2007-06-09 05:54:13 +00:00
|
|
|
text = strdup(e->text);
|
|
|
|
if (text == NULL)
|
|
|
|
errx(1, "event_continue: cannot allocate memory");
|
|
|
|
|
|
|
|
free(e->text);
|
|
|
|
e->text = (char *)malloc(strlen(text) + strlen(txt) + 3);
|
|
|
|
if (e->text == NULL)
|
|
|
|
errx(1, "event_continue: cannot allocate memory");
|
|
|
|
strcpy(e->text, text);
|
|
|
|
strcat(e->text, "\n");
|
|
|
|
strcat(e->text, txt);
|
|
|
|
free(text);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-08-05 08:16:37 +00:00
|
|
|
static void
|
2007-06-09 05:54:13 +00:00
|
|
|
event_print_all(FILE *fp, struct event *events)
|
|
|
|
{
|
|
|
|
struct event *e, *e_next;
|
|
|
|
int daycounter;
|
|
|
|
int day, month;
|
|
|
|
|
2008-08-05 08:11:54 +00:00
|
|
|
/*
|
|
|
|
* Print all events:
|
|
|
|
* - We know the number of days to be counted (f_dayAfter + f_dayBefore)
|
|
|
|
* - We know the current day of the year ("now" - f_dayBefore + counter)
|
|
|
|
* - We know the number of days in the year (yrdays, set in settime())
|
|
|
|
* - So we know the date on which the current daycounter is on the
|
|
|
|
* calendar in days and months.
|
|
|
|
* - Go through the list of events, and print all matching dates
|
|
|
|
*/
|
|
|
|
for (daycounter = 0; daycounter <= f_dayAfter + f_dayBefore;
|
|
|
|
daycounter++) {
|
2007-06-09 05:54:13 +00:00
|
|
|
day = tp->tm_yday - f_dayBefore + daycounter;
|
2008-08-05 08:11:54 +00:00
|
|
|
if (day < 0)
|
|
|
|
day += yrdays;
|
|
|
|
if (day >= yrdays)
|
|
|
|
day -= yrdays;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* When we know the day of the year, we can determine the day
|
|
|
|
* of the month and the month.
|
|
|
|
*/
|
2007-06-09 05:54:13 +00:00
|
|
|
month = 1;
|
|
|
|
while (month <= 12) {
|
|
|
|
if (day <= cumdays[month])
|
|
|
|
break;
|
|
|
|
month++;
|
|
|
|
}
|
|
|
|
month--;
|
|
|
|
day -= cumdays[month];
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2008-08-05 08:11:54 +00:00
|
|
|
fprintf(stderr, "event_print_allmonth: %d, day: %d\n",
|
|
|
|
month, day);
|
2007-06-09 05:54:13 +00:00
|
|
|
#endif
|
|
|
|
|
2008-08-05 08:11:54 +00:00
|
|
|
/*
|
|
|
|
* Go through all events and print the text of the matching
|
|
|
|
* dates
|
|
|
|
*/
|
|
|
|
for (e = events; e != NULL; e = e_next) {
|
2007-06-09 05:54:13 +00:00
|
|
|
e_next = e->next;
|
|
|
|
|
|
|
|
if (month != e->month || day != e->day)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
(void)fprintf(fp, "%s%c%s\n", e->date,
|
|
|
|
e->var ? '*' : ' ', e->text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1996-02-02 06:02:41 +00:00
|
|
|
int
|
2007-05-07 11:18:30 +00:00
|
|
|
getfield(char *p, char **endp, int *flags)
|
1996-02-02 06:02:41 +00:00
|
|
|
{
|
|
|
|
int val, var;
|
|
|
|
char *start, savech;
|
|
|
|
|
2007-06-09 05:54:13 +00:00
|
|
|
for (; !isdigit((unsigned char)*p) && !isalpha((unsigned char)*p)
|
2008-08-05 08:11:54 +00:00
|
|
|
&& *p != '*'; ++p)
|
|
|
|
;
|
1996-02-02 06:02:41 +00:00
|
|
|
if (*p == '*') { /* `*' is current month */
|
|
|
|
*flags |= F_ISMONTH;
|
2008-08-05 08:11:54 +00:00
|
|
|
*endp = p + 1;
|
1996-02-02 06:02:41 +00:00
|
|
|
return (tp->tm_mon + 1);
|
|
|
|
}
|
1996-05-10 16:30:22 +00:00
|
|
|
if (isdigit((unsigned char)*p)) {
|
1996-02-02 06:02:41 +00:00
|
|
|
val = strtol(p, &p, 10); /* if 0, it's failure */
|
2007-06-09 05:54:13 +00:00
|
|
|
for (; !isdigit((unsigned char)*p)
|
|
|
|
&& !isalpha((unsigned char)*p) && *p != '*'; ++p);
|
1996-02-02 06:02:41 +00:00
|
|
|
*endp = p;
|
|
|
|
return (val);
|
|
|
|
}
|
1996-05-10 16:30:22 +00:00
|
|
|
for (start = p; isalpha((unsigned char)*++p););
|
2007-06-09 05:54:13 +00:00
|
|
|
|
1996-02-02 06:02:41 +00:00
|
|
|
/* Sunday-1 */
|
2007-06-09 05:54:13 +00:00
|
|
|
if (*p == '+' || *p == '-')
|
2008-08-05 08:11:54 +00:00
|
|
|
for(; isdigit((unsigned char)*++p);)
|
|
|
|
;
|
2007-06-09 05:54:13 +00:00
|
|
|
|
1996-02-02 06:02:41 +00:00
|
|
|
savech = *p;
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
/* Month */
|
|
|
|
if ((val = getmonth(start)) != 0)
|
|
|
|
*flags |= F_ISMONTH;
|
|
|
|
|
|
|
|
/* Day */
|
|
|
|
else if ((val = getday(start)) != 0) {
|
2008-08-05 08:11:54 +00:00
|
|
|
*flags |= F_ISDAY;
|
1996-02-02 06:02:41 +00:00
|
|
|
|
2008-08-05 08:11:54 +00:00
|
|
|
/* variable weekday */
|
|
|
|
if ((var = getdayvar(start)) != 0) {
|
|
|
|
if (var <= 5 && var >= -4)
|
|
|
|
val += var * 10;
|
1996-02-02 06:02:41 +00:00
|
|
|
#ifdef DEBUG
|
2008-08-05 08:11:54 +00:00
|
|
|
printf("var: %d\n", var);
|
1996-02-02 06:02:41 +00:00
|
|
|
#endif
|
2008-08-05 08:11:54 +00:00
|
|
|
}
|
1996-02-02 06:02:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Easter */
|
|
|
|
else if ((val = geteaster(start, tp->tm_year + 1900)) != 0)
|
2008-08-05 08:11:54 +00:00
|
|
|
*flags |= F_EASTER;
|
1996-02-02 06:02:41 +00:00
|
|
|
|
1996-05-10 16:30:22 +00:00
|
|
|
/* Paskha */
|
|
|
|
else if ((val = getpaskha(start, tp->tm_year + 1900)) != 0)
|
2008-08-05 08:11:54 +00:00
|
|
|
*flags |= F_EASTER;
|
1996-05-10 16:30:22 +00:00
|
|
|
|
1996-02-02 06:02:41 +00:00
|
|
|
/* undefined rest */
|
|
|
|
else {
|
|
|
|
*p = savech;
|
|
|
|
return (0);
|
|
|
|
}
|
2007-06-09 05:54:13 +00:00
|
|
|
for (*p = savech; !isdigit((unsigned char)*p)
|
2008-08-05 08:11:54 +00:00
|
|
|
&& !isalpha((unsigned char)*p) && *p != '*'; ++p)
|
|
|
|
;
|
1996-02-02 06:02:41 +00:00
|
|
|
*endp = p;
|
|
|
|
return (val);
|
|
|
|
}
|
|
|
|
|
|
|
|
FILE *
|
2007-05-07 11:18:30 +00:00
|
|
|
opencal(void)
|
1996-02-02 06:02:41 +00:00
|
|
|
{
|
1997-02-09 07:45:03 +00:00
|
|
|
uid_t uid;
|
2002-07-28 13:46:09 +00:00
|
|
|
size_t i;
|
|
|
|
int fd, found, pdes[2];
|
1996-02-02 06:02:41 +00:00
|
|
|
struct stat sbuf;
|
|
|
|
|
|
|
|
/* open up calendar file as stdin */
|
|
|
|
if (!freopen(calendarFile, "r", stdin)) {
|
|
|
|
if (doall) {
|
2008-08-05 08:11:54 +00:00
|
|
|
if (chdir(calendarHomes[0]) != 0)
|
|
|
|
return (NULL);
|
|
|
|
if (stat(calendarNoMail, &sbuf) == 0)
|
|
|
|
return (NULL);
|
|
|
|
if (!freopen(calendarFile, "r", stdin))
|
|
|
|
return (NULL);
|
1996-02-02 06:02:41 +00:00
|
|
|
} else {
|
2007-10-30 03:44:10 +00:00
|
|
|
char *home = getenv("HOME");
|
|
|
|
if (home == NULL || *home == '\0')
|
|
|
|
errx(1, "cannot get home directory");
|
|
|
|
chdir(home);
|
2002-07-28 13:46:09 +00:00
|
|
|
for (found = i = 0; i < sizeof(calendarHomes) /
|
|
|
|
sizeof(calendarHomes[0]); i++)
|
2008-08-05 08:11:54 +00:00
|
|
|
if (chdir(calendarHomes[i]) == 0 &&
|
|
|
|
freopen(calendarFile, "r", stdin)) {
|
|
|
|
found = 1;
|
|
|
|
break;
|
|
|
|
}
|
2002-07-28 13:46:09 +00:00
|
|
|
if (!found)
|
2008-08-05 08:11:54 +00:00
|
|
|
errx(1,
|
|
|
|
"can't open calendar file \"%s\": %s (%d)",
|
|
|
|
calendarFile, strerror(errno), errno);
|
1996-02-02 06:02:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (pipe(pdes) < 0)
|
|
|
|
return (NULL);
|
1998-10-13 15:05:00 +00:00
|
|
|
switch (fork()) {
|
1996-02-02 06:02:41 +00:00
|
|
|
case -1: /* error */
|
|
|
|
(void)close(pdes[0]);
|
|
|
|
(void)close(pdes[1]);
|
|
|
|
return (NULL);
|
|
|
|
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]);
|
1997-02-09 07:45:03 +00:00
|
|
|
uid = geteuid();
|
|
|
|
if (setuid(getuid()) < 0) {
|
1997-06-23 06:52:13 +00:00
|
|
|
warnx("first setuid failed");
|
1997-02-09 07:45:03 +00:00
|
|
|
_exit(1);
|
|
|
|
};
|
|
|
|
if (setgid(getegid()) < 0) {
|
1997-06-23 06:52:13 +00:00
|
|
|
warnx("setgid failed");
|
1997-02-09 07:45:03 +00:00
|
|
|
_exit(1);
|
|
|
|
}
|
|
|
|
if (setuid(uid) < 0) {
|
1997-06-23 06:52:13 +00:00
|
|
|
warnx("setuid failed");
|
1997-02-09 07:45:03 +00:00
|
|
|
_exit(1);
|
|
|
|
}
|
2000-01-10 06:24:49 +00:00
|
|
|
execl(_PATH_CPP, "cpp", "-P",
|
|
|
|
"-traditional", "-nostdinc", /* GCC specific opts */
|
2001-07-09 09:24:06 +00:00
|
|
|
"-I.", "-I", _PATH_INCLUDE, (char *)NULL);
|
1997-06-23 06:52:13 +00:00
|
|
|
warn(_PATH_CPP);
|
1996-02-02 06:02:41 +00:00
|
|
|
_exit(1);
|
|
|
|
}
|
|
|
|
/* 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)
|
|
|
|
return (stdout);
|
|
|
|
|
|
|
|
/* set output to a temporary file, so if no output don't send mail */
|
|
|
|
(void)snprintf(path, sizeof(path), "%s/_calXXXXXX", _PATH_TMP);
|
|
|
|
if ((fd = mkstemp(path)) < 0)
|
|
|
|
return (NULL);
|
|
|
|
return (fdopen(fd, "w+"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-05-07 11:18:30 +00:00
|
|
|
closecal(FILE *fp)
|
1996-02-02 06:02:41 +00:00
|
|
|
{
|
1997-02-09 07:45:03 +00:00
|
|
|
uid_t uid;
|
1996-02-02 06:02:41 +00:00
|
|
|
struct stat sbuf;
|
|
|
|
int nread, pdes[2], status;
|
|
|
|
char buf[1024];
|
|
|
|
|
|
|
|
if (!doall)
|
|
|
|
return;
|
|
|
|
|
2009-12-17 08:42:44 +00:00
|
|
|
rewind(fp);
|
1996-02-02 06:02:41 +00:00
|
|
|
if (fstat(fileno(fp), &sbuf) || !sbuf.st_size)
|
|
|
|
goto done;
|
|
|
|
if (pipe(pdes) < 0)
|
|
|
|
goto done;
|
1998-10-13 15:05:00 +00:00
|
|
|
switch (fork()) {
|
1996-02-02 06:02:41 +00:00
|
|
|
case -1: /* error */
|
|
|
|
(void)close(pdes[0]);
|
|
|
|
(void)close(pdes[1]);
|
|
|
|
goto done;
|
|
|
|
case 0:
|
|
|
|
/* 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]);
|
1997-02-09 07:45:03 +00:00
|
|
|
uid = geteuid();
|
|
|
|
if (setuid(getuid()) < 0) {
|
1997-06-23 06:52:13 +00:00
|
|
|
warnx("setuid failed");
|
1997-02-09 07:45:03 +00:00
|
|
|
_exit(1);
|
|
|
|
};
|
|
|
|
if (setgid(getegid()) < 0) {
|
1997-06-23 06:52:13 +00:00
|
|
|
warnx("setgid failed");
|
1997-02-09 07:45:03 +00:00
|
|
|
_exit(1);
|
|
|
|
}
|
|
|
|
if (setuid(uid) < 0) {
|
1997-06-23 06:52:13 +00:00
|
|
|
warnx("setuid failed");
|
1997-02-09 07:45:03 +00:00
|
|
|
_exit(1);
|
|
|
|
}
|
1996-02-02 06:02:41 +00:00
|
|
|
execl(_PATH_SENDMAIL, "sendmail", "-i", "-t", "-F",
|
2001-07-09 09:24:06 +00:00
|
|
|
"\"Reminder Service\"", (char *)NULL);
|
1997-06-23 06:52:13 +00:00
|
|
|
warn(_PATH_SENDMAIL);
|
1996-02-02 06:02:41 +00:00
|
|
|
_exit(1);
|
|
|
|
}
|
|
|
|
/* parent -- write to pipe input */
|
|
|
|
(void)close(pdes[0]);
|
|
|
|
|
|
|
|
header[1].iov_base = header[3].iov_base = pw->pw_name;
|
|
|
|
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]);
|
|
|
|
done: (void)fclose(fp);
|
|
|
|
(void)unlink(path);
|
|
|
|
while (wait(&status) >= 0);
|
|
|
|
}
|