]> diplodocus.org Git - nmh/blob - uip/slocal.c
Replace getcpy() with mh_xstrdup() where the string isn't NULL.
[nmh] / uip / slocal.c
1
2 /*
3 * slocal.c -- asynchronously filter and deliver new mail
4 *
5 * This code is Copyright (c) 2002, by the authors of nmh. See the
6 * COPYRIGHT file in the root directory of the nmh distribution for
7 * complete copyright information.
8 */
9
10 /*
11 * Under sendmail, users should add the line
12 *
13 * "| /usr/local/nmh/lib/slocal"
14 *
15 * to their $HOME/.forward file.
16 *
17 */
18
19 /* Changed to use getutent() and friends. Assumes that when getutent() exists,
20 * a number of other things also exist. Please check.
21 * Ruud de Rooij <ruud@ruud.org> Sun, 28 May 2000 17:28:55 +0200
22 */
23
24 #include <h/mh.h>
25 #include <h/dropsbr.h>
26 #include <h/rcvmail.h>
27 #include <h/signals.h>
28 #include <setjmp.h>
29 #include <h/tws.h>
30 #include <h/mts.h>
31 #include <h/utils.h>
32
33 #include <pwd.h>
34 #include <sys/ioctl.h>
35 #include <fcntl.h>
36
37 /* Hopefully, grp.h declares initgroups(). If we run into a platform
38 where it doesn't, we could consider declaring it here as well. */
39 #include <grp.h>
40
41 /* This define is needed for Berkeley db v2 and above to
42 * make the header file expose the 'historical' ndbm APIs.
43 * We define it unconditionally because this is simple and
44 * harmless.
45 */
46 #define DB_DBM_HSEARCH 1
47 #ifdef DB_DBM_HSEARCH
48 #endif /* Use DB_DBM_HSEARCH to prevent warning from gcc -Wunused-macros. */
49 #ifdef NDBM_HEADER
50 #include NDBM_HEADER
51 #endif
52
53 #ifdef HAVE_GETUTXENT
54 #include <utmpx.h>
55 #endif /* HAVE_GETUTXENT */
56
57 #define SLOCAL_SWITCHES \
58 X("addr address", 0, ADDRSW) \
59 X("user name", 0, USERSW) \
60 X("file file", 0, FILESW) \
61 X("sender address", 0, SENDERSW) \
62 X("mailbox file", 0, MAILBOXSW) \
63 X("home directory", -4, HOMESW) \
64 X("info data", 0, INFOSW) \
65 X("maildelivery file", 0, MAILSW) \
66 X("verbose", 0, VERBSW) \
67 X("noverbose", 0, NVERBSW) \
68 X("suppressdup", 0, SUPPRESSDUP) \
69 X("nosuppressdup", 0, NSUPPRESSDUP) \
70 X("debug", 0, DEBUGSW) \
71 X("version", 0, VERSIONSW) \
72 X("help", 0, HELPSW) \
73
74 #define X(sw, minchars, id) id,
75 DEFINE_SWITCH_ENUM(SLOCAL);
76 #undef X
77
78 #define X(sw, minchars, id) { sw, minchars, id },
79 DEFINE_SWITCH_ARRAY(SLOCAL, switches);
80 #undef X
81
82 static int globbed = 0; /* have we built "vars" table yet? */
83 static int parsed = 0; /* have we built header field table yet */
84 static int utmped = 0; /* have we scanned umtp(x) file yet */
85 static int suppressdup = 0; /* are we suppressing duplicate messages? */
86
87 static int verbose = 0;
88 static int debug = 0;
89
90 static char *addr = NULL;
91 static char *user = NULL;
92 static char *info = NULL;
93 static char *file = NULL;
94 static char *sender = NULL;
95 static char *envelope = NULL; /* envelope information ("From " line) */
96 static char *mbox = NULL;
97 static char *home = NULL;
98
99 static struct passwd *pw; /* passwd file entry */
100
101 static char ddate[BUFSIZ]; /* record the delivery date */
102 struct tws *now;
103
104 static jmp_buf myctx;
105
106 /* flags for pair->p_flags */
107 #define P_NIL 0x00
108 #define P_ADR 0x01 /* field is address */
109 #define P_HID 0x02 /* special (fake) field */
110 #define P_CHK 0x04
111
112 struct pair {
113 char *p_name;
114 char *p_value;
115 char p_flags;
116 };
117
118 #define NVEC 100
119
120 /*
121 * Lookup table for matching fields and patterns
122 * in messages. The rest of the table is added
123 * when the message is parsed.
124 */
125 static struct pair hdrs[NVEC + 1] = {
126 { "source", NULL, P_HID },
127 { "addr", NULL, P_HID },
128 { "Return-Path", NULL, P_ADR },
129 { "Reply-To", NULL, P_ADR },
130 { "From", NULL, P_ADR },
131 { "Sender", NULL, P_ADR },
132 { "To", NULL, P_ADR },
133 { "cc", NULL, P_ADR },
134 { "Resent-Reply-To", NULL, P_ADR },
135 { "Resent-From", NULL, P_ADR },
136 { "Resent-Sender", NULL, P_ADR },
137 { "Resent-To", NULL, P_ADR },
138 { "Resent-cc", NULL, P_ADR },
139 { NULL, NULL, 0 }
140 };
141
142 /*
143 * The list of builtin variables to expand in a string
144 * before it is executed by the "pipe" or "qpipe" action.
145 */
146 static struct pair vars[] = {
147 { "sender", NULL, P_NIL },
148 { "address", NULL, P_NIL },
149 { "size", NULL, P_NIL },
150 { "reply-to", NULL, P_CHK },
151 { "info", NULL, P_NIL },
152 { NULL, NULL, 0 }
153 };
154
155 extern char **environ;
156
157 /*
158 * static prototypes
159 */
160 static int localmail (int, char *);
161 static int usr_delivery (int, char *, int);
162 static int split (char *, char **);
163 static int parse (int);
164 static void expand (char *, char *, int);
165 static void glob (int);
166 static struct pair *lookup (struct pair *, char *);
167 static int logged_in (void);
168 static int timely (char *, char *);
169 static int usr_file (int, char *, int);
170 static int usr_pipe (int, char *, char *, char **, int);
171 static int usr_folder (int, char *);
172 static void alrmser (int);
173 static void get_sender (char *, char **);
174 static int copy_message (int, char *, int);
175 static void verbose_printf (char *fmt, ...);
176 static void adorn (char *, char *, ...);
177 static void debug_printf (char *fmt, ...);
178 static int suppress_duplicates (int, char *);
179 static char *trim (char *);
180
181
182 int
183 main (int argc, char **argv)
184 {
185 int fd, status;
186 FILE *fp;
187 char *cp, *mdlvr = NULL, buf[BUFSIZ];
188 char mailbox[BUFSIZ], tmpfil[BUFSIZ];
189 char **argp, **arguments;
190
191 if (nmh_init(argv[0], 0 /* use context_foil() */)) { return 1; }
192
193 mts_init ();
194 arguments = getarguments (invo_name, argc, argv, 0);
195 argp = arguments;
196
197 /* Parse arguments */
198 while ((cp = *argp++)) {
199 if (*cp == '-') {
200 switch (smatch (++cp, switches)) {
201 case AMBIGSW:
202 ambigsw (cp, switches);
203 done (1);
204 case UNKWNSW:
205 adios (NULL, "-%s unknown", cp);
206
207 case HELPSW:
208 snprintf (buf, sizeof(buf), "%s [switches]", invo_name);
209 print_help (buf, switches, 0);
210 done (0);
211 case VERSIONSW:
212 print_version(invo_name);
213 done (0);
214
215 case ADDRSW:
216 if (!(addr = *argp++))/* allow -xyz arguments */
217 adios (NULL, "missing argument to %s", argp[-2]);
218 continue;
219 case INFOSW:
220 if (!(info = *argp++))/* allow -xyz arguments */
221 adios (NULL, "missing argument to %s", argp[-2]);
222 continue;
223 case USERSW:
224 if (!(user = *argp++))/* allow -xyz arguments */
225 adios (NULL, "missing argument to %s", argp[-2]);
226 continue;
227 case FILESW:
228 if (!(file = *argp++) || *file == '-')
229 adios (NULL, "missing argument to %s", argp[-2]);
230 continue;
231 case SENDERSW:
232 if (!(sender = *argp++))/* allow -xyz arguments */
233 adios (NULL, "missing argument to %s", argp[-2]);
234 continue;
235 case MAILBOXSW:
236 if (!(mbox = *argp++) || *mbox == '-')
237 adios (NULL, "missing argument to %s", argp[-2]);
238 continue;
239 case HOMESW:
240 if (!(home = *argp++) || *home == '-')
241 adios (NULL, "missing argument to %s", argp[-2]);
242 continue;
243
244 case MAILSW:
245 if (!(cp = *argp++) || *cp == '-')
246 adios (NULL, "missing argument to %s", argp[-2]);
247 if (mdlvr)
248 adios (NULL, "only one maildelivery file at a time!");
249 mdlvr = cp;
250 continue;
251
252 case VERBSW:
253 verbose++;
254 continue;
255 case NVERBSW:
256 verbose = 0;
257 continue;
258
259 case SUPPRESSDUP:
260 suppressdup++;
261 continue;
262 case NSUPPRESSDUP:
263 suppressdup = 0;
264 continue;
265 case DEBUGSW:
266 debug++;
267 continue;
268 }
269 } else {
270 adios (NULL, "only switch arguments are supported");
271 }
272 }
273
274 if (addr == NULL)
275 addr = getusername ();
276 if (user == NULL) {
277 user = getusername ();
278 }
279 if ((pw = getpwnam (user)) == NULL)
280 adios (NULL, "no such local user as %s", user);
281
282 if (chdir (pw->pw_dir) == -1)
283 if (chdir ("/") < 0) {
284 advise ("/", "chdir");
285 }
286 umask (0077);
287
288 if (geteuid() == 0) {
289 if (setgid (pw->pw_gid) != 0) {
290 adios ("setgid", "unable to set group to %ld", (long) pw->pw_gid);
291 }
292 initgroups (pw->pw_name, pw->pw_gid);
293 if (setuid (pw->pw_uid) != 0) {
294 adios ("setuid", "unable to set user to %ld", (long) pw->pw_uid);
295 }
296 }
297
298 if (info == NULL)
299 info = "";
300
301 setbuf (stdin, NULL);
302
303 /* Record the delivery time */
304 if ((now = dlocaltimenow ()) == NULL)
305 adios (NULL, "unable to ascertain local time");
306 snprintf (ddate, sizeof(ddate), "Delivery-Date: %s\n", dtimenow (0));
307
308 /*
309 * Copy the message to a temporary file
310 */
311 if (file) {
312 int tempfd;
313
314 /* getting message from file */
315 if ((tempfd = open (file, O_RDONLY)) == -1)
316 adios (file, "unable to open");
317 if (debug)
318 debug_printf ("retrieving message from file \"%s\"\n", file);
319 if ((fd = copy_message (tempfd, tmpfil, 1)) == -1)
320 adios(NULL, "unable to create temporary file in %s",
321 get_temp_dir());
322 close (tempfd);
323 } else {
324 /* getting message from stdin */
325 if (debug)
326 debug_printf ("retrieving message from stdin\n");
327 if ((fd = copy_message (fileno (stdin), tmpfil, 1)) == -1)
328 adios(NULL, "unable to create temporary file in %s",
329 get_temp_dir());
330 }
331
332 if (debug)
333 debug_printf ("temporary file=\"%s\"\n", tmpfil);
334
335 /* Delete the temp file now or a copy of every single message passed through
336 slocal will be left in the /tmp directory until deleted manually! This
337 unlink() used to be under an 'else' of the 'if (debug)' above, but since
338 some people like to always run slocal with -debug and log the results,
339 the /tmp directory would get choked over time. Of course, now that we
340 always delete the temp file, the "temporary file=" message above is
341 somewhat pointless -- someone watching debug output wouldn't have a
342 chance to 'tail -f' or 'ln' the temp file before it's unlinked. The best
343 thing would be to delay this unlink() until later if debug == 1, but I'll
344 leave that for someone who cares about the temp-file-accessing
345 functionality (they'll have to watch out for cases where we adios()). */
346 (void) m_unlink (tmpfil);
347
348 if (!(fp = fdopen (fd, "r+")))
349 adios (NULL, "unable to access temporary file");
350
351 /*
352 * If no sender given, extract it
353 * from envelope information. */
354 if (sender == NULL)
355 get_sender (envelope, &sender);
356
357 if (mbox == NULL) {
358 snprintf (mailbox, sizeof(mailbox), "%s/%s",
359 mmdfldir[0] ? mmdfldir : pw->pw_dir,
360 mmdflfil[0] ? mmdflfil : pw->pw_name);
361 mbox = mailbox;
362 }
363 if (home == NULL)
364 home = pw->pw_dir;
365
366 if (debug) {
367 debug_printf ("addr=\"%s\"\n", trim(addr));
368 debug_printf ("user=\"%s\"\n", trim(user));
369 debug_printf ("info=\"%s\"\n", trim(info));
370 debug_printf ("sender=\"%s\"\n", trim(sender));
371 debug_printf ("envelope=\"%s\"\n", envelope ? trim(envelope) : "");
372 debug_printf ("mbox=\"%s\"\n", trim(mbox));
373 debug_printf ("home=\"%s\"\n", trim(home));
374 debug_printf ("ddate=\"%s\"\n", trim(ddate));
375 debug_printf ("now=%02d:%02d\n\n", now->tw_hour, now->tw_min);
376 }
377
378 /* deliver the message */
379 status = localmail (fd, mdlvr);
380
381 done (status != -1 ? RCV_MOK : RCV_MBX);
382 return 1;
383 }
384
385
386 /*
387 * Main routine for delivering message.
388 */
389
390 static int
391 localmail (int fd, char *mdlvr)
392 {
393 /* check if this message is a duplicate */
394 if (suppressdup &&
395 suppress_duplicates(fd, mdlvr ? mdlvr : ".maildelivery") == DONE)
396 return 0;
397
398 /* delivery according to personal Maildelivery file */
399 if (usr_delivery (fd, mdlvr ? mdlvr : ".maildelivery", 0) != -1)
400 return 0;
401
402 /* delivery according to global Maildelivery file */
403 if (usr_delivery (fd, maildelivery, 1) != -1)
404 return 0;
405
406 if (verbose)
407 verbose_printf ("(delivering to standard mail spool)\n");
408
409 /* last resort - deliver to standard mail spool */
410 return usr_file (fd, mbox, MBOX_FORMAT);
411 }
412
413
414 #define matches(a,b) (stringdex (b, a) >= 0)
415
416 /*
417 * Parse the delivery file, and process incoming message.
418 */
419
420 static int
421 usr_delivery (int fd, char *delivery, int su)
422 {
423 int i, accept, status=1, won, vecp, next;
424 char *field, *pattern, *action, *result, *string;
425 char buffer[BUFSIZ], tmpbuf[BUFSIZ];
426 char *cp, *vec[NVEC];
427 struct stat st;
428 struct pair *p;
429 FILE *fp;
430
431 /* open the delivery file */
432 if ((fp = fopen (delivery, "r")) == NULL)
433 return -1;
434
435 /* check if delivery file has bad ownership or permissions */
436 if (fstat (fileno (fp), &st) == -1
437 || (st.st_uid != 0 && (su || st.st_uid != pw->pw_uid))
438 || st.st_mode & (S_IWGRP|S_IWOTH)) {
439 if (verbose) {
440 verbose_printf ("WARNING: %s has bad ownership/modes (su=%d,uid=%d,owner=%d,mode=0%o)\n",
441 delivery, su, (int) pw->pw_uid, (int) st.st_uid, (int) st.st_mode);
442 }
443 return -1;
444 }
445
446 won = 0;
447 next = 1;
448
449 /* read and process delivery file */
450 while (fgets (buffer, sizeof(buffer), fp)) {
451 /* skip comments and empty lines */
452 if (*buffer == '#' || *buffer == '\n')
453 continue;
454
455 /* zap trailing newline */
456 if ((cp = strchr(buffer, '\n')))
457 *cp = 0;
458
459 /* split buffer into fields */
460 vecp = split (buffer, vec);
461
462 /* check for too few fields */
463 if (vecp < 5) {
464 if (debug)
465 debug_printf ("WARNING: entry with only %d fields, skipping.\n", vecp);
466 continue;
467 }
468
469 if (debug) {
470 for (i = 0; vec[i]; i++)
471 debug_printf ("vec[%d]: \"%s\"\n", i, trim(vec[i]));
472 }
473
474 field = vec[0];
475 pattern = vec[1];
476 action = vec[2];
477 result = vec[3];
478 string = vec[4];
479
480 /* find out how to perform the action */
481 switch (result[0]) {
482 case 'N':
483 case 'n':
484 /*
485 * If previous condition failed, don't
486 * do this - else fall through
487 */
488 if (!next)
489 continue; /* else fall */
490
491 case '?':
492 /*
493 * If already delivered, skip this action. Else
494 * consider delivered if action is successful.
495 */
496 if (won)
497 continue; /* else fall */
498
499 case 'A':
500 case 'a':
501 /*
502 * Take action, and consider delivered if
503 * action is successful.
504 */
505 accept = 1;
506 break;
507
508 case 'R':
509 case 'r':
510 default:
511 /*
512 * Take action, but don't consider delivered, even
513 * if action is successful
514 */
515 accept = 0;
516 break;
517 }
518
519 if (vecp > 5) {
520 if (!strcasecmp (vec[5], "select")) {
521 if (logged_in () != -1)
522 continue;
523 if (vecp > 7 && timely (vec[6], vec[7]) == -1)
524 continue;
525 }
526 }
527
528 /* check if the field matches */
529 switch (*field) {
530 case '*':
531 /* always matches */
532 break;
533
534 case 'd':
535 /*
536 * "default" matches only if the message hasn't
537 * been delivered yet.
538 */
539 if (!strcasecmp (field, "default")) {
540 if (won)
541 continue;
542 break;
543 } /* else fall */
544
545 default:
546 /* parse message and build lookup table */
547 if (!parsed && parse (fd) == -1) {
548 fclose (fp);
549 return -1;
550 }
551 /*
552 * find header field in lookup table, and
553 * see if the pattern matches.
554 */
555 if ((p = lookup (hdrs, field)) && (p->p_value != NULL)
556 && matches (p->p_value, pattern)) {
557 next = 1;
558 } else {
559 next = 0;
560 continue;
561 }
562 break;
563 }
564
565 /* find out the action to perform */
566 switch (*action) {
567 case 'q':
568 /* deliver to quoted pipe */
569 if (strcasecmp (action, "qpipe"))
570 continue; /* else fall */
571 case '^':
572 expand (tmpbuf, string, fd);
573 if (split (tmpbuf, vec) < 1)
574 continue;
575 status = usr_pipe (fd, tmpbuf, vec[0], vec, 0);
576 break;
577
578 case 'p':
579 /* deliver to pipe */
580 if (strcasecmp (action, "pipe"))
581 continue; /* else fall */
582 case '|':
583 vec[2] = "sh";
584 vec[3] = "-c";
585 expand (tmpbuf, string, fd);
586 vec[4] = tmpbuf;
587 vec[5] = NULL;
588 status = usr_pipe (fd, tmpbuf, "/bin/sh", vec + 2, 0);
589 break;
590
591 case 'f':
592 /* mbox format */
593 if (!strcasecmp (action, "file")) {
594 status = usr_file (fd, string, MBOX_FORMAT);
595 break;
596 }
597 /* deliver to nmh folder */
598 else if (strcasecmp (action, "folder"))
599 continue; /* else fall */
600 case '+':
601 status = usr_folder (fd, string);
602 break;
603
604 case 'm':
605 /* mmdf format */
606 if (!strcasecmp (action, "mmdf")) {
607 status = usr_file (fd, string, MMDF_FORMAT);
608 break;
609 }
610 /* mbox format */
611 else if (strcasecmp (action, "mbox"))
612 continue; /* else fall */
613
614 case '>':
615 /* mbox format */
616 status = usr_file (fd, string, MBOX_FORMAT);
617 break;
618
619 case 'd':
620 /* ignore message */
621 if (strcasecmp (action, "destroy"))
622 continue;
623 status = 0;
624 break;
625 }
626
627 if (status) next = 0; /* action failed, mark for 'N' result */
628
629 if (accept && status == 0)
630 won++;
631 }
632
633 fclose (fp);
634 return (won ? 0 : -1);
635 }
636
637
638 #define QUOTE '\\'
639
640 /*
641 * Split buffer into fields (delimited by whitespace or
642 * comma's). Return the number of fields found.
643 */
644
645 static int
646 split (char *cp, char **vec)
647 {
648 int i;
649 char *s;
650
651 s = cp;
652
653 /* split into a maximum of NVEC fields */
654 for (i = 0; i <= NVEC;) {
655 vec[i] = NULL;
656
657 /* zap any whitespace and comma's */
658 while (isspace ((unsigned char) *s) || *s == ',')
659 *s++ = 0;
660
661 /* end of buffer, time to leave */
662 if (*s == 0)
663 break;
664
665 /* get double quote text as a single field */
666 if (*s == '"') {
667 for (vec[i++] = ++s; *s && *s != '"'; s++) {
668 /*
669 * Check for escaped double quote. We need
670 * to shift the string to remove slash.
671 */
672 if (*s == QUOTE) {
673 if (*++s == '"')
674 strcpy (s - 1, s);
675 s--;
676 }
677 }
678 if (*s == '"') /* zap trailing double quote */
679 *s++ = 0;
680 continue;
681 }
682
683 if (*s == QUOTE && *++s != '"')
684 s--;
685 vec[i++] = s++;
686
687 /* move forward to next field delimiter */
688 while (*s && !isspace ((unsigned char) *s) && *s != ',')
689 s++;
690 }
691 vec[i] = NULL;
692
693 return i;
694 }
695
696
697 /*
698 * Parse the headers of a message, and build the
699 * lookup table for matching fields and patterns.
700 */
701
702 static int
703 parse (int fd)
704 {
705 int i, state;
706 int fd1;
707 char *cp, *dp, *lp;
708 char name[NAMESZ], field[BUFSIZ];
709 struct pair *p, *q;
710 FILE *in;
711 m_getfld_state_t gstate = 0;
712
713 if (parsed++)
714 return 0;
715
716 /* get a new FILE pointer to message */
717 if ((fd1 = dup (fd)) == -1)
718 return -1;
719 if ((in = fdopen (fd1, "r")) == NULL) {
720 close (fd1);
721 return -1;
722 }
723 rewind (in);
724
725 /* add special entries to lookup table */
726 if ((p = lookup (hdrs, "source")))
727 p->p_value = getcpy (sender);
728 if ((p = lookup (hdrs, "addr")))
729 p->p_value = getcpy (addr);
730
731 /*
732 * Scan the headers of the message and build
733 * a lookup table.
734 */
735 for (i = 0;;) {
736 int fieldsz = sizeof field;
737 switch (state = m_getfld (&gstate, name, field, &fieldsz, in)) {
738 case FLD:
739 case FLDPLUS:
740 lp = add (field, NULL);
741 while (state == FLDPLUS) {
742 fieldsz = sizeof field;
743 state = m_getfld (&gstate, name, field, &fieldsz, in);
744 lp = add (field, lp);
745 }
746 for (p = hdrs; p->p_name; p++) {
747 if (!strcasecmp (p->p_name, name)) {
748 if (!(p->p_flags & P_HID)) {
749 if ((cp = p->p_value)) {
750 if (p->p_flags & P_ADR) {
751 dp = cp + strlen (cp) - 1;
752 if (*dp == '\n')
753 *dp = 0;
754 cp = add (",\n\t", cp);
755 } else {
756 cp = add ("\t", cp);
757 }
758 }
759 p->p_value = add (lp, cp);
760 }
761 free (lp);
762 break;
763 }
764 }
765 if (p->p_name == NULL && i < NVEC) {
766 p->p_name = getcpy (name);
767 p->p_value = lp;
768 p->p_flags = P_NIL;
769 p++, i++;
770 p->p_name = NULL;
771 }
772 continue;
773
774 case BODY:
775 case FILEEOF:
776 break;
777
778 case LENERR:
779 case FMTERR:
780 advise (NULL, "format error in message");
781 break;
782
783 default:
784 advise (NULL, "internal error in m_getfld");
785 fclose (in);
786 return -1;
787 }
788 break;
789 }
790 m_getfld_state_destroy (&gstate);
791 fclose (in);
792
793 if ((p = lookup (vars, "reply-to"))) {
794 if ((q = lookup (hdrs, "reply-to")) == NULL || q->p_value == NULL)
795 q = lookup (hdrs, "from");
796 p->p_value = getcpy (q ? q->p_value : "");
797 p->p_flags &= ~P_CHK;
798 if (debug)
799 debug_printf ("vars[%d]: name=\"%s\" value=\"%s\"\n",
800 p - vars, p->p_name, trim(p->p_value));
801 }
802 if (debug) {
803 for (p = hdrs; p->p_name; p++)
804 debug_printf ("hdrs[%d]: name=\"%s\" value=\"%s\"\n",
805 p - hdrs, p->p_name, p->p_value ? trim(p->p_value) : "");
806 }
807
808 return 0;
809 }
810
811
812 #define LPAREN '('
813 #define RPAREN ')'
814
815 /*
816 * Expand any builtin variables such as $(sender),
817 * $(address), etc., in a string.
818 */
819
820 static void
821 expand (char *s1, char *s2, int fd)
822 {
823 char c, *cp;
824 struct pair *p;
825
826 if (!globbed)
827 glob (fd);
828
829 while ((c = *s2++)) {
830 if (c != '$' || *s2 != LPAREN) {
831 *s1++ = c;
832 } else {
833 for (cp = ++s2; *s2 && *s2 != RPAREN; s2++)
834 continue;
835 if (*s2 != RPAREN) {
836 s2 = --cp;
837 continue;
838 }
839 *s2++ = 0;
840 if ((p = lookup (vars, cp))) {
841 if (!parsed && (p->p_flags & P_CHK))
842 parse (fd);
843
844 strcpy (s1, p->p_value);
845 s1 += strlen (s1);
846 }
847 }
848 }
849 *s1 = 0;
850 }
851
852
853 /*
854 * Fill in the information missing from the "vars"
855 * table, which is necessary to expand any builtin
856 * variables in the string for a "pipe" or "qpipe"
857 * action.
858 */
859
860 static void
861 glob (int fd)
862 {
863 char buffer[BUFSIZ];
864 struct stat st;
865 struct pair *p;
866
867 if (globbed++)
868 return;
869
870 if ((p = lookup (vars, "sender")))
871 p->p_value = getcpy (sender);
872 if ((p = lookup (vars, "address")))
873 p->p_value = getcpy (addr);
874 if ((p = lookup (vars, "size"))) {
875 snprintf (buffer, sizeof(buffer), "%d",
876 fstat (fd, &st) != -1 ? (int) st.st_size : 0);
877 p->p_value = getcpy (buffer);
878 }
879 if ((p = lookup (vars, "info")))
880 p->p_value = getcpy (info);
881
882 if (debug) {
883 for (p = vars; p->p_name; p++)
884 debug_printf ("vars[%d]: name=\"%s\" value=\"%s\"\n",
885 p - vars, p->p_name, trim(p->p_value));
886 }
887 }
888
889
890 /*
891 * Find a matching name in a lookup table. If found,
892 * return the "pairs" entry, else return NULL.
893 */
894
895 static struct pair *
896 lookup (struct pair *pairs, char *key)
897 {
898 for (; pairs->p_name; pairs++)
899 if (!strcasecmp (pairs->p_name, key))
900 return pairs;
901
902 return NULL;
903 }
904
905
906 /*
907 * Check utmp(x) file to see if user is currently
908 * logged in.
909 */
910
911 static int
912 logged_in (void)
913 {
914 #if HAVE_GETUTXENT
915 struct utmpx *utp;
916
917 if (utmped)
918 return utmped;
919
920 setutxent();
921
922 while ((utp = getutxent()) != NULL) {
923 if ( utp->ut_type == USER_PROCESS && utp->ut_user[0] != 0
924 && strncmp (user, utp->ut_user, sizeof(utp->ut_user)) == 0) {
925 if (debug)
926 continue;
927 endutxent();
928 return (utmped = DONE);
929 }
930 }
931
932 endutxent();
933 #endif /* HAVE_GETUTXENT */
934 return (utmped = NOTOK);
935 }
936
937 #define check(t,a,b) if (t < a || t > b) return -1
938 #define cmpar(h1,m1,h2,m2) if (h1 < h2 || (h1 == h2 && m1 < m2)) return 0
939
940 static int
941 timely (char *t1, char *t2)
942 {
943 int t1hours, t1mins, t2hours, t2mins;
944
945 if (sscanf (t1, "%d:%d", &t1hours, &t1mins) != 2)
946 return -1;
947 check (t1hours, 0, 23);
948 check (t1mins, 0, 59);
949
950 if (sscanf (t2, "%d:%d", &t2hours, &t2mins) != 2)
951 return -1;
952 check (t2hours, 0, 23);
953 check (t2mins, 0, 59);
954
955 cmpar (now->tw_hour, now->tw_min, t1hours, t1mins);
956 cmpar (t2hours, t2mins, now->tw_hour, now->tw_min);
957
958 return -1;
959 }
960
961
962 /*
963 * Deliver message by appending to a file.
964 */
965
966 static int
967 usr_file (int fd, char *mailbox, int mbx_style)
968 {
969 int md, mapping;
970
971 if (verbose)
972 verbose_printf ("delivering to file \"%s\"", mailbox);
973
974 if (mbx_style == MBOX_FORMAT) {
975 if (verbose)
976 verbose_printf (" (mbox style)");
977 mapping = 0;
978 } else {
979 if (verbose)
980 verbose_printf (" (mmdf style)");
981 mapping = 1;
982 }
983
984 /* open and lock the file */
985 if ((md = mbx_open (mailbox, mbx_style, pw->pw_uid, pw->pw_gid, m_gmprot())) == -1) {
986 if (verbose)
987 adorn ("", "unable to open:");
988 return -1;
989 }
990
991 lseek (fd, (off_t) 0, SEEK_SET);
992
993 /* append message to file */
994 if (mbx_copy (mailbox, mbx_style, md, fd, mapping, NULL, verbose) == -1) {
995 if (verbose)
996 adorn ("", "error writing to:");
997 return -1;
998 }
999
1000 /* close and unlock file */
1001 if (mbx_close (mailbox, md) == NOTOK) {
1002 if (verbose)
1003 adorn ("", "error closing:");
1004 return -1;
1005 }
1006
1007 if (verbose)
1008 verbose_printf (", success.\n");
1009 return 0;
1010 }
1011
1012
1013 /*
1014 * Deliver message to a nmh folder.
1015 */
1016
1017 static int
1018 usr_folder (int fd, char *string)
1019 {
1020 int status;
1021 char folder[BUFSIZ], *vec[3];
1022
1023 /* get folder name ready */
1024 if (*string == '+')
1025 strncpy(folder, string, sizeof(folder));
1026 else
1027 snprintf(folder, sizeof(folder), "+%s", string);
1028
1029 if (verbose)
1030 verbose_printf ("delivering to folder \"%s\"", folder + 1);
1031
1032 vec[0] = "rcvstore";
1033 vec[1] = folder;
1034 vec[2] = NULL;
1035
1036 /* use rcvstore to put message in folder */
1037 status = usr_pipe (fd, "rcvstore", rcvstoreproc, vec, 1);
1038
1039 return status;
1040 }
1041
1042 /*
1043 * Deliver message to a process.
1044 */
1045
1046 static int
1047 usr_pipe (int fd_arg, char *cmd, char *pgm, char **vec, int suppress)
1048 {
1049 volatile int fd = fd_arg;
1050 pid_t child_id;
1051 int i, bytes, seconds, status;
1052 struct stat st;
1053
1054 if (verbose && !suppress)
1055 verbose_printf ("delivering to pipe \"%s\"", cmd);
1056
1057 lseek (fd, (off_t) 0, SEEK_SET);
1058
1059 for (i = 0; (child_id = fork()) == -1 && i < 5; i++)
1060 sleep (5);
1061
1062 switch (child_id) {
1063 case -1:
1064 /* fork error */
1065 if (verbose)
1066 adorn ("fork", "unable to");
1067 return -1;
1068
1069 case 0:
1070 /* child process */
1071 if (fd != 0)
1072 dup2 (fd, 0);
1073 if (freopen ("/dev/null", "w", stdout) == NULL) {
1074 advise ("stdout", "freopen");
1075 }
1076 if (freopen ("/dev/null", "w", stderr) == NULL) {
1077 advise ("stderr", "freopen");
1078 }
1079 if (fd != 3)
1080 dup2 (fd, 3);
1081 closefds (4);
1082
1083 #ifdef TIOCNOTTY
1084 if ((fd = open ("/dev/tty", O_RDWR)) != -1) {
1085 ioctl (fd, TIOCNOTTY, NULL);
1086 close (fd);
1087 }
1088 #endif /* TIOCNOTTY */
1089
1090 setpgid ((pid_t) 0, getpid ()); /* put in own process group */
1091
1092 *environ = NULL;
1093 m_putenv ("USER", pw->pw_name);
1094 m_putenv ("HOME", pw->pw_dir);
1095 m_putenv ("SHELL", pw->pw_shell);
1096
1097 execvp (pgm, vec);
1098 _exit (-1);
1099
1100 default:
1101 /* parent process */
1102 if (! setjmp (myctx)) {
1103 SIGNAL (SIGALRM, alrmser);
1104 bytes = fstat (fd, &st) != -1 ? (int) st.st_size : 100;
1105
1106 /* amount of time to wait depends on message size */
1107 if (bytes <= 100) {
1108 /* give at least 5 minutes */
1109 seconds = 300;
1110 } else if (bytes >= 90000) {
1111 /* a half hour is long enough */
1112 seconds = 1800;
1113 } else {
1114 seconds = (bytes / 60) + 300;
1115 }
1116 alarm ((unsigned int) seconds);
1117 status = pidwait (child_id, 0);
1118 alarm (0);
1119
1120 if (verbose) {
1121 if (status == 0)
1122 verbose_printf (", success.\n");
1123 else
1124 if ((status & 0xff00) == 0xff00)
1125 verbose_printf (", system error\n");
1126 else
1127 pidstatus (status, stdout, ", failed");
1128 }
1129 return (status == 0 ? 0 : -1);
1130 } else {
1131 /*
1132 * Ruthlessly kill the child and anything
1133 * else in its process group.
1134 */
1135 killpg(child_id, SIGKILL);
1136 if (verbose)
1137 verbose_printf (", timed-out; terminated\n");
1138 return -1;
1139 }
1140 }
1141 }
1142
1143
1144 static void
1145 alrmser (int i)
1146 {
1147 NMH_UNUSED (i);
1148
1149 longjmp (myctx, DONE);
1150 }
1151
1152
1153 /*
1154 * Get the `sender' from the envelope
1155 * information ("From " line).
1156 */
1157
1158 static void
1159 get_sender (char *envelope, char **sender)
1160 {
1161 int i;
1162 char *cp;
1163 char buffer[BUFSIZ];
1164
1165 if (envelope == NULL) {
1166 *sender = mh_xstrdup("");
1167 return;
1168 }
1169
1170 i = strlen ("From ");
1171 strncpy (buffer, envelope + i, sizeof(buffer));
1172 if ((cp = strchr(buffer, '\n'))) {
1173 *cp = 0;
1174 cp -= 24;
1175 if (cp < buffer)
1176 cp = buffer;
1177 } else {
1178 cp = buffer;
1179 }
1180 *cp = 0;
1181
1182 for (cp = buffer + strlen (buffer) - 1; cp >= buffer; cp--)
1183 if (isspace ((unsigned char) *cp))
1184 *cp = 0;
1185 else
1186 break;
1187 *sender = getcpy (buffer);
1188 }
1189
1190
1191 /*
1192 * Copy message into a temporary file.
1193 * While copying, it will do some header processing
1194 * including the extraction of the envelope information.
1195 */
1196
1197 static int
1198 copy_message (int qd, char *tmpfil, int fold)
1199 {
1200 int i, first = 1, fd1, fd2;
1201 char buffer[BUFSIZ];
1202 FILE *qfp, *ffp;
1203 char *tfile = NULL;
1204
1205 tfile = m_mktemp2(NULL, invo_name, &fd1, NULL);
1206 if (tfile == NULL) return -1;
1207 strncpy (tmpfil, tfile, BUFSIZ);
1208
1209 if (!fold) {
1210 while ((i = read (qd, buffer, sizeof(buffer))) > 0)
1211 if (write (fd1, buffer, i) != i) {
1212 you_lose:
1213 close (fd1);
1214 (void) m_unlink (tmpfil);
1215 return -1;
1216 }
1217 if (i == -1)
1218 goto you_lose;
1219 lseek (fd1, (off_t) 0, SEEK_SET);
1220 return fd1;
1221 }
1222
1223 /* dup the fd for incoming message */
1224 if ((fd2 = dup (qd)) == -1) {
1225 close (fd1);
1226 return -1;
1227 }
1228
1229 /* now create a FILE pointer for it */
1230 if ((qfp = fdopen (fd2, "r")) == NULL) {
1231 close (fd1);
1232 close (fd2);
1233 return -1;
1234 }
1235
1236 /* dup the fd for temporary file */
1237 if ((fd2 = dup (fd1)) == -1) {
1238 close (fd1);
1239 fclose (qfp);
1240 return -1;
1241 }
1242
1243 /* now create a FILE pointer for it */
1244 if ((ffp = fdopen (fd2, "r+")) == NULL) {
1245 close (fd1);
1246 close (fd2);
1247 fclose (qfp);
1248 return -1;
1249 }
1250
1251 /*
1252 * copy message into temporary file
1253 * and massage the headers. Save
1254 * a copy of the "From " line for later.
1255 */
1256 i = strlen ("From ");
1257 while (fgets (buffer, sizeof(buffer), qfp)) {
1258 if (first) {
1259 first = 0;
1260 if (!strncmp (buffer, "From ", i)) {
1261 /* get copy of envelope information ("From " line) */
1262 envelope = getcpy (buffer);
1263
1264 /* Put the delivery date in message */
1265 fputs (ddate, ffp);
1266 if (ferror (ffp))
1267 goto fputs_error;
1268
1269 continue;
1270 }
1271 }
1272
1273 fputs (buffer, ffp);
1274 if (ferror (ffp))
1275 goto fputs_error;
1276 }
1277
1278 fclose (ffp);
1279 if (ferror (qfp)) {
1280 close (fd1);
1281 fclose (qfp);
1282 return -1;
1283 }
1284 fclose (qfp);
1285 lseek (fd1, (off_t) 0, SEEK_SET);
1286 return fd1;
1287
1288
1289 fputs_error:
1290 close (fd1);
1291 fclose (ffp);
1292 fclose (qfp);
1293 return -1;
1294 }
1295
1296 /*
1297 * Trim strings for pretty printing of debugging output
1298 */
1299
1300 static char *
1301 trim (char *cp)
1302 {
1303 char buffer[BUFSIZ*4];
1304 char *bp, *sp;
1305
1306 if (cp == NULL)
1307 return NULL;
1308
1309 /* copy string into temp buffer */
1310 strncpy (buffer, cp, sizeof(buffer));
1311 bp = buffer;
1312
1313 /* skip over leading whitespace */
1314 while (isspace((unsigned char) *bp))
1315 bp++;
1316
1317 /* start at the end and zap trailing whitespace */
1318 for (sp = bp + strlen(bp) - 1; sp >= bp; sp--) {
1319 if (isspace((unsigned char) *sp))
1320 *sp = 0;
1321 else
1322 break;
1323 }
1324
1325 /* replace remaining whitespace with spaces */
1326 for (sp = bp; *sp; sp++)
1327 if (isspace((unsigned char) *sp))
1328 *sp = ' ';
1329
1330 /* now return a copy */
1331 return getcpy(bp);
1332 }
1333
1334 /*
1335 * Function for printing `verbose' messages.
1336 */
1337
1338 static void
1339 verbose_printf (char *fmt, ...)
1340 {
1341 va_list ap;
1342
1343 va_start(ap, fmt);
1344 vfprintf (stdout, fmt, ap);
1345 va_end(ap);
1346
1347 fflush (stdout); /* now flush output */
1348 }
1349
1350
1351 /*
1352 * Function for printing `verbose' delivery
1353 * error messages.
1354 */
1355
1356 static void
1357 adorn (char *what, char *fmt, ...)
1358 {
1359 va_list ap;
1360 int eindex;
1361 char *s;
1362
1363 eindex = errno; /* save the errno */
1364 fprintf (stdout, ", ");
1365
1366 va_start(ap, fmt);
1367 vfprintf (stdout, fmt, ap);
1368 va_end(ap);
1369
1370 if (what) {
1371 if (*what)
1372 fprintf (stdout, " %s: ", what);
1373 if ((s = strerror (eindex)))
1374 fprintf (stdout, "%s", s);
1375 else
1376 fprintf (stdout, "Error %d", eindex);
1377 }
1378
1379 fputc ('\n', stdout);
1380 fflush (stdout);
1381 }
1382
1383
1384 /*
1385 * Function for printing `debug' messages.
1386 */
1387
1388 static void
1389 debug_printf (char *fmt, ...)
1390 {
1391 va_list ap;
1392
1393 va_start(ap, fmt);
1394 vfprintf (stderr, fmt, ap);
1395 va_end(ap);
1396 }
1397
1398
1399 /*
1400 * Check ndbm/db file(s) to see if the Message-Id of this
1401 * message matches the Message-Id of a previous message,
1402 * so we can discard it. If it doesn't match, we add the
1403 * Message-Id of this message to the ndbm/db file.
1404 */
1405 static int
1406 suppress_duplicates (int fd, char *file)
1407 {
1408 int fd1, lockfd, state, result;
1409 char *cp, buf[BUFSIZ], name[NAMESZ];
1410 datum key, value;
1411 DBM *db;
1412 FILE *in;
1413 m_getfld_state_t gstate = 0;
1414
1415 if ((fd1 = dup (fd)) == -1)
1416 return -1;
1417 if (!(in = fdopen (fd1, "r"))) {
1418 close (fd1);
1419 return -1;
1420 }
1421 rewind (in);
1422
1423 for (;;) {
1424 int failed_to_lock = 0;
1425 int bufsz = sizeof buf;
1426 state = m_getfld (&gstate, name, buf, &bufsz, in);
1427 switch (state) {
1428 case FLD:
1429 case FLDPLUS:
1430 /* Search for the message ID */
1431 if (strcasecmp (name, "Message-ID")) {
1432 while (state == FLDPLUS) {
1433 bufsz = sizeof buf;
1434 state = m_getfld (&gstate, name, buf, &bufsz, in);
1435 }
1436 continue;
1437 }
1438
1439 cp = add (buf, NULL);
1440 while (state == FLDPLUS) {
1441 bufsz = sizeof buf;
1442 state = m_getfld (&gstate, name, buf, &bufsz, in);
1443 cp = add (buf, cp);
1444 }
1445 key.dptr = trimcpy (cp);
1446 key.dsize = strlen (key.dptr) + 1;
1447 free (cp);
1448 cp = key.dptr;
1449
1450 if (!(db = dbm_open (file, O_RDWR | O_CREAT, 0600))) {
1451 advise (file, "unable to perform dbm_open on");
1452 free (cp);
1453 fclose (in);
1454 return -1;
1455 }
1456 /*
1457 * Since it is difficult to portable lock a ndbm file,
1458 * we will open and lock the Maildelivery file instead.
1459 * This will fail if your Maildelivery file doesn't
1460 * exist.
1461 */
1462 if ((lockfd = lkopendata(file, O_RDWR, 0, &failed_to_lock))
1463 == -1) {
1464 advise (file, "unable to perform file locking on");
1465 free (cp);
1466 fclose (in);
1467 return -1;
1468 }
1469 value = dbm_fetch (db, key);
1470 if (value.dptr) {
1471 if (verbose)
1472 verbose_printf ("Message-ID: %s\n already received on %s",
1473 cp, value.dptr);
1474 result = DONE;
1475 } else {
1476 value.dptr = ddate + sizeof("Delivery-Date:");
1477 value.dsize = strlen(value.dptr) + 1;
1478 if (dbm_store (db, key, value, DBM_INSERT))
1479 advise (file, "possibly corrupt file");
1480 result = 0;
1481 }
1482
1483 dbm_close (db);
1484 lkclosedata(lockfd, file);
1485 free (cp);
1486 fclose (in);
1487 return result;
1488
1489 case BODY:
1490 case FILEEOF:
1491 break;
1492
1493 case LENERR:
1494 case FMTERR:
1495 default:
1496 break;
1497 }
1498
1499 break;
1500 }
1501 m_getfld_state_destroy (&gstate);
1502
1503 fclose (in);
1504 return 0;
1505 }