vacation.c revision 1.1.1.2 1 1.1 cgd /*
2 1.1.1.2 jtc * Copyright (c) 1983, 1987, 1993
3 1.1.1.2 jtc * The Regents of the University of California. All rights reserved.
4 1.1 cgd *
5 1.1 cgd * Redistribution and use in source and binary forms, with or without
6 1.1 cgd * modification, are permitted provided that the following conditions
7 1.1 cgd * are met:
8 1.1 cgd * 1. Redistributions of source code must retain the above copyright
9 1.1 cgd * notice, this list of conditions and the following disclaimer.
10 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer in the
12 1.1 cgd * documentation and/or other materials provided with the distribution.
13 1.1 cgd * 3. All advertising materials mentioning features or use of this software
14 1.1 cgd * must display the following acknowledgement:
15 1.1 cgd * This product includes software developed by the University of
16 1.1 cgd * California, Berkeley and its contributors.
17 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
18 1.1 cgd * may be used to endorse or promote products derived from this software
19 1.1 cgd * without specific prior written permission.
20 1.1 cgd *
21 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 1.1 cgd * SUCH DAMAGE.
32 1.1 cgd */
33 1.1 cgd
34 1.1 cgd #ifndef lint
35 1.1.1.2 jtc static char copyright[] =
36 1.1.1.2 jtc "@(#) Copyright (c) 1983, 1987, 1993\n\
37 1.1.1.2 jtc The Regents of the University of California. All rights reserved.\n";
38 1.1 cgd #endif /* not lint */
39 1.1 cgd
40 1.1 cgd #ifndef lint
41 1.1.1.2 jtc static char sccsid[] = "@(#)vacation.c 8.2 (Berkeley) 1/26/94";
42 1.1 cgd #endif /* not lint */
43 1.1 cgd
44 1.1 cgd /*
45 1.1 cgd ** Vacation
46 1.1 cgd ** Copyright (c) 1983 Eric P. Allman
47 1.1 cgd ** Berkeley, California
48 1.1 cgd */
49 1.1 cgd
50 1.1 cgd #include <sys/param.h>
51 1.1 cgd #include <sys/stat.h>
52 1.1 cgd #include <fcntl.h>
53 1.1 cgd #include <pwd.h>
54 1.1 cgd #include <db.h>
55 1.1 cgd #include <time.h>
56 1.1 cgd #include <syslog.h>
57 1.1 cgd #include <tzfile.h>
58 1.1 cgd #include <errno.h>
59 1.1 cgd #include <unistd.h>
60 1.1 cgd #include <stdio.h>
61 1.1 cgd #include <ctype.h>
62 1.1 cgd #include <stdlib.h>
63 1.1 cgd #include <string.h>
64 1.1 cgd #include <paths.h>
65 1.1 cgd
66 1.1 cgd /*
67 1.1 cgd * VACATION -- return a message to the sender when on vacation.
68 1.1 cgd *
69 1.1 cgd * This program is invoked as a message receiver. It returns a
70 1.1 cgd * message specified by the user to whomever sent the mail, taking
71 1.1 cgd * care not to return a message too often to prevent "I am on
72 1.1 cgd * vacation" loops.
73 1.1 cgd */
74 1.1 cgd
75 1.1 cgd #define MAXLINE 1024 /* max line from mail header */
76 1.1 cgd #define VDB ".vacation.db" /* dbm's database */
77 1.1 cgd #define VMSG ".vacation.msg" /* vacation message */
78 1.1 cgd
79 1.1 cgd typedef struct alias {
80 1.1 cgd struct alias *next;
81 1.1 cgd char *name;
82 1.1 cgd } ALIAS;
83 1.1 cgd ALIAS *names;
84 1.1 cgd
85 1.1 cgd DB *db;
86 1.1 cgd
87 1.1 cgd char from[MAXLINE];
88 1.1 cgd
89 1.1 cgd main(argc, argv)
90 1.1 cgd int argc;
91 1.1 cgd char **argv;
92 1.1 cgd {
93 1.1 cgd extern int optind, opterr;
94 1.1 cgd extern char *optarg;
95 1.1 cgd struct passwd *pw;
96 1.1 cgd ALIAS *cur;
97 1.1 cgd time_t interval;
98 1.1 cgd int ch, iflag;
99 1.1 cgd
100 1.1 cgd opterr = iflag = 0;
101 1.1 cgd interval = -1;
102 1.1 cgd while ((ch = getopt(argc, argv, "a:Iir:")) != EOF)
103 1.1 cgd switch((char)ch) {
104 1.1 cgd case 'a': /* alias */
105 1.1 cgd if (!(cur = (ALIAS *)malloc((u_int)sizeof(ALIAS))))
106 1.1 cgd break;
107 1.1 cgd cur->name = optarg;
108 1.1 cgd cur->next = names;
109 1.1 cgd names = cur;
110 1.1 cgd break;
111 1.1 cgd case 'I': /* backward compatible */
112 1.1 cgd case 'i': /* init the database */
113 1.1 cgd iflag = 1;
114 1.1 cgd break;
115 1.1 cgd case 'r':
116 1.1 cgd if (isdigit(*optarg)) {
117 1.1 cgd interval = atol(optarg) * SECSPERDAY;
118 1.1 cgd if (interval < 0)
119 1.1 cgd usage();
120 1.1 cgd }
121 1.1 cgd else
122 1.1 cgd interval = LONG_MAX;
123 1.1 cgd break;
124 1.1 cgd case '?':
125 1.1 cgd default:
126 1.1 cgd usage();
127 1.1 cgd }
128 1.1 cgd argc -= optind;
129 1.1 cgd argv += optind;
130 1.1 cgd
131 1.1 cgd if (argc != 1) {
132 1.1 cgd if (!iflag)
133 1.1 cgd usage();
134 1.1 cgd if (!(pw = getpwuid(getuid()))) {
135 1.1 cgd syslog(LOG_ERR,
136 1.1 cgd "vacation: no such user uid %u.\n", getuid());
137 1.1 cgd exit(1);
138 1.1 cgd }
139 1.1 cgd }
140 1.1 cgd else if (!(pw = getpwnam(*argv))) {
141 1.1 cgd syslog(LOG_ERR, "vacation: no such user %s.\n", *argv);
142 1.1 cgd exit(1);
143 1.1 cgd }
144 1.1 cgd if (chdir(pw->pw_dir)) {
145 1.1 cgd syslog(LOG_NOTICE,
146 1.1 cgd "vacation: no such directory %s.\n", pw->pw_dir);
147 1.1 cgd exit(1);
148 1.1 cgd }
149 1.1 cgd
150 1.1.1.2 jtc db = dbopen(VDB, O_CREAT|O_RDWR | (iflag ? O_TRUNC : 0),
151 1.1.1.2 jtc S_IRUSR|S_IWUSR, DB_HASH, NULL);
152 1.1 cgd if (!db) {
153 1.1 cgd syslog(LOG_NOTICE, "vacation: %s: %s\n", VDB, strerror(errno));
154 1.1 cgd exit(1);
155 1.1 cgd }
156 1.1 cgd
157 1.1 cgd if (interval != -1)
158 1.1 cgd setinterval(interval);
159 1.1 cgd
160 1.1 cgd if (iflag) {
161 1.1 cgd (void)(db->close)(db);
162 1.1 cgd exit(0);
163 1.1 cgd }
164 1.1 cgd
165 1.1 cgd if (!(cur = malloc((u_int)sizeof(ALIAS))))
166 1.1 cgd exit(1);
167 1.1 cgd cur->name = pw->pw_name;
168 1.1 cgd cur->next = names;
169 1.1 cgd names = cur;
170 1.1 cgd
171 1.1 cgd readheaders();
172 1.1 cgd if (!recent()) {
173 1.1 cgd setreply();
174 1.1 cgd (void)(db->close)(db);
175 1.1 cgd sendmessage(pw->pw_name);
176 1.1 cgd }
177 1.1.1.2 jtc else
178 1.1.1.2 jtc (void)(db->close)(db);
179 1.1 cgd exit(0);
180 1.1 cgd /* NOTREACHED */
181 1.1 cgd }
182 1.1 cgd
183 1.1 cgd /*
184 1.1 cgd * readheaders --
185 1.1 cgd * read mail headers
186 1.1 cgd */
187 1.1 cgd readheaders()
188 1.1 cgd {
189 1.1 cgd register ALIAS *cur;
190 1.1 cgd register char *p;
191 1.1 cgd int tome, cont;
192 1.1 cgd char buf[MAXLINE];
193 1.1 cgd
194 1.1 cgd cont = tome = 0;
195 1.1 cgd while (fgets(buf, sizeof(buf), stdin) && *buf != '\n')
196 1.1 cgd switch(*buf) {
197 1.1 cgd case 'F': /* "From " */
198 1.1 cgd cont = 0;
199 1.1 cgd if (!strncmp(buf, "From ", 5)) {
200 1.1 cgd for (p = buf + 5; *p && *p != ' '; ++p);
201 1.1 cgd *p = '\0';
202 1.1 cgd (void)strcpy(from, buf + 5);
203 1.1 cgd if (p = index(from, '\n'))
204 1.1 cgd *p = '\0';
205 1.1 cgd if (junkmail())
206 1.1 cgd exit(0);
207 1.1 cgd }
208 1.1 cgd break;
209 1.1 cgd case 'P': /* "Precedence:" */
210 1.1 cgd cont = 0;
211 1.1 cgd if (strncasecmp(buf, "Precedence", 10) ||
212 1.1 cgd buf[10] != ':' && buf[10] != ' ' && buf[10] != '\t')
213 1.1 cgd break;
214 1.1 cgd if (!(p = index(buf, ':')))
215 1.1 cgd break;
216 1.1 cgd while (*++p && isspace(*p));
217 1.1 cgd if (!*p)
218 1.1 cgd break;
219 1.1 cgd if (!strncasecmp(p, "junk", 4) ||
220 1.1.1.2 jtc !strncasecmp(p, "bulk", 4) ||
221 1.1.1.2 jtc !strncasecmp(p, "list", 4))
222 1.1 cgd exit(0);
223 1.1 cgd break;
224 1.1 cgd case 'C': /* "Cc:" */
225 1.1 cgd if (strncmp(buf, "Cc:", 3))
226 1.1 cgd break;
227 1.1 cgd cont = 1;
228 1.1 cgd goto findme;
229 1.1 cgd case 'T': /* "To:" */
230 1.1 cgd if (strncmp(buf, "To:", 3))
231 1.1 cgd break;
232 1.1 cgd cont = 1;
233 1.1 cgd goto findme;
234 1.1 cgd default:
235 1.1 cgd if (!isspace(*buf) || !cont || tome) {
236 1.1 cgd cont = 0;
237 1.1 cgd break;
238 1.1 cgd }
239 1.1 cgd findme: for (cur = names; !tome && cur; cur = cur->next)
240 1.1 cgd tome += nsearch(cur->name, buf);
241 1.1 cgd }
242 1.1 cgd if (!tome)
243 1.1 cgd exit(0);
244 1.1 cgd if (!*from) {
245 1.1 cgd syslog(LOG_NOTICE, "vacation: no initial \"From\" line.\n");
246 1.1 cgd exit(1);
247 1.1 cgd }
248 1.1 cgd }
249 1.1 cgd
250 1.1 cgd /*
251 1.1 cgd * nsearch --
252 1.1 cgd * do a nice, slow, search of a string for a substring.
253 1.1 cgd */
254 1.1 cgd nsearch(name, str)
255 1.1 cgd register char *name, *str;
256 1.1 cgd {
257 1.1 cgd register int len;
258 1.1 cgd
259 1.1 cgd for (len = strlen(name); *str; ++str)
260 1.1 cgd if (*str == *name && !strncasecmp(name, str, len))
261 1.1 cgd return(1);
262 1.1 cgd return(0);
263 1.1 cgd }
264 1.1 cgd
265 1.1 cgd /*
266 1.1 cgd * junkmail --
267 1.1.1.2 jtc * read the header and return if automagic/junk/bulk/list mail
268 1.1 cgd */
269 1.1 cgd junkmail()
270 1.1 cgd {
271 1.1 cgd static struct ignore {
272 1.1 cgd char *name;
273 1.1 cgd int len;
274 1.1 cgd } ignore[] = {
275 1.1 cgd "-request", 8, "postmaster", 10, "uucp", 4,
276 1.1 cgd "mailer-daemon", 13, "mailer", 6, "-relay", 6,
277 1.1 cgd NULL, NULL,
278 1.1 cgd };
279 1.1 cgd register struct ignore *cur;
280 1.1 cgd register int len;
281 1.1 cgd register char *p;
282 1.1 cgd
283 1.1 cgd /*
284 1.1 cgd * This is mildly amusing, and I'm not positive it's right; trying
285 1.1 cgd * to find the "real" name of the sender, assuming that addresses
286 1.1 cgd * will be some variant of:
287 1.1 cgd *
288 1.1 cgd * From site!site!SENDER%site.domain%site.domain (at) site.domain
289 1.1 cgd */
290 1.1 cgd if (!(p = index(from, '%')))
291 1.1 cgd if (!(p = index(from, '@'))) {
292 1.1 cgd if (p = rindex(from, '!'))
293 1.1 cgd ++p;
294 1.1 cgd else
295 1.1 cgd p = from;
296 1.1 cgd for (; *p; ++p);
297 1.1 cgd }
298 1.1 cgd len = p - from;
299 1.1 cgd for (cur = ignore; cur->name; ++cur)
300 1.1 cgd if (len >= cur->len &&
301 1.1 cgd !strncasecmp(cur->name, p - cur->len, cur->len))
302 1.1 cgd return(1);
303 1.1 cgd return(0);
304 1.1 cgd }
305 1.1 cgd
306 1.1 cgd #define VIT "__VACATION__INTERVAL__TIMER__"
307 1.1 cgd
308 1.1 cgd /*
309 1.1 cgd * recent --
310 1.1 cgd * find out if user has gotten a vacation message recently.
311 1.1 cgd * use bcopy for machines with alignment restrictions
312 1.1 cgd */
313 1.1 cgd recent()
314 1.1 cgd {
315 1.1 cgd DBT key, data;
316 1.1 cgd time_t then, next;
317 1.1 cgd
318 1.1 cgd /* get interval time */
319 1.1 cgd key.data = VIT;
320 1.1 cgd key.size = sizeof(VIT);
321 1.1 cgd if ((db->get)(db, &key, &data, 0))
322 1.1 cgd next = SECSPERDAY * DAYSPERWEEK;
323 1.1 cgd else
324 1.1 cgd bcopy(data.data, &next, sizeof(next));
325 1.1 cgd
326 1.1 cgd /* get record for this address */
327 1.1 cgd key.data = from;
328 1.1 cgd key.size = strlen(from);
329 1.1 cgd if (!(db->get)(db, &key, &data, 0)) {
330 1.1 cgd bcopy(data.data, &then, sizeof(then));
331 1.1 cgd if (next == LONG_MAX || then + next > time(NULL))
332 1.1 cgd return(1);
333 1.1 cgd }
334 1.1 cgd return(0);
335 1.1 cgd }
336 1.1 cgd
337 1.1 cgd /*
338 1.1 cgd * setinterval --
339 1.1 cgd * store the reply interval
340 1.1 cgd */
341 1.1 cgd setinterval(interval)
342 1.1 cgd time_t interval;
343 1.1 cgd {
344 1.1 cgd DBT key, data;
345 1.1 cgd
346 1.1 cgd key.data = VIT;
347 1.1 cgd key.size = sizeof(VIT);
348 1.1 cgd data.data = &interval;
349 1.1 cgd data.size = sizeof(interval);
350 1.1.1.2 jtc (void)(db->put)(db, &key, &data, 0);
351 1.1 cgd }
352 1.1 cgd
353 1.1 cgd /*
354 1.1 cgd * setreply --
355 1.1 cgd * store that this user knows about the vacation.
356 1.1 cgd */
357 1.1 cgd setreply()
358 1.1 cgd {
359 1.1 cgd DBT key, data;
360 1.1 cgd time_t now;
361 1.1 cgd
362 1.1 cgd key.data = from;
363 1.1 cgd key.size = strlen(from);
364 1.1 cgd (void)time(&now);
365 1.1 cgd data.data = &now;
366 1.1 cgd data.size = sizeof(now);
367 1.1.1.2 jtc (void)(db->put)(db, &key, &data, 0);
368 1.1 cgd }
369 1.1 cgd
370 1.1 cgd /*
371 1.1 cgd * sendmessage --
372 1.1 cgd * exec sendmail to send the vacation file to sender
373 1.1 cgd */
374 1.1 cgd sendmessage(myname)
375 1.1 cgd char *myname;
376 1.1 cgd {
377 1.1.1.2 jtc FILE *mfp, *sfp;
378 1.1.1.2 jtc int i;
379 1.1.1.2 jtc int pvect[2];
380 1.1.1.2 jtc char buf[MAXLINE];
381 1.1.1.2 jtc
382 1.1.1.2 jtc mfp = fopen(VMSG, "r");
383 1.1.1.2 jtc if (mfp == NULL) {
384 1.1 cgd syslog(LOG_NOTICE, "vacation: no ~%s/%s file.\n", myname, VMSG);
385 1.1 cgd exit(1);
386 1.1 cgd }
387 1.1.1.2 jtc if (pipe(pvect) < 0) {
388 1.1.1.2 jtc syslog(LOG_ERR, "vacation: pipe: %s", strerror(errno));
389 1.1.1.2 jtc exit(1);
390 1.1.1.2 jtc }
391 1.1.1.2 jtc i = vfork();
392 1.1.1.2 jtc if (i < 0) {
393 1.1.1.2 jtc syslog(LOG_ERR, "vacation: fork: %s", strerror(errno));
394 1.1.1.2 jtc exit(1);
395 1.1.1.2 jtc }
396 1.1.1.2 jtc if (i == 0) {
397 1.1.1.2 jtc dup2(pvect[0], 0);
398 1.1.1.2 jtc close(pvect[0]);
399 1.1.1.2 jtc close(pvect[1]);
400 1.1.1.2 jtc fclose(mfp);
401 1.1.1.2 jtc execl(_PATH_SENDMAIL, "sendmail", "-f", myname, from, NULL);
402 1.1.1.2 jtc syslog(LOG_ERR, "vacation: can't exec %s: %s",
403 1.1.1.2 jtc _PATH_SENDMAIL, strerror(errno));
404 1.1.1.2 jtc exit(1);
405 1.1.1.2 jtc }
406 1.1.1.2 jtc close(pvect[0]);
407 1.1.1.2 jtc sfp = fdopen(pvect[1], "w");
408 1.1.1.2 jtc fprintf(sfp, "To: %s\n", from);
409 1.1.1.2 jtc while (fgets(buf, sizeof buf, mfp))
410 1.1.1.2 jtc fputs(buf, sfp);
411 1.1.1.2 jtc fclose(mfp);
412 1.1.1.2 jtc fclose(sfp);
413 1.1 cgd }
414 1.1 cgd
415 1.1 cgd usage()
416 1.1 cgd {
417 1.1 cgd syslog(LOG_NOTICE, "uid %u: usage: vacation [-i] [-a alias] login\n",
418 1.1 cgd getuid());
419 1.1 cgd exit(1);
420 1.1 cgd }
421