]> diplodocus.org Git - nmh/blob - uip/mhlsbr.c
Apply David Levine's fix from whomfile() to sendfile() as well.
[nmh] / uip / mhlsbr.c
1
2 /*
3 * mhlsbr.c -- main routines for nmh message lister
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 #include <h/mh.h>
11 #include <h/signals.h>
12 #include <h/addrsbr.h>
13 #include <h/fmt_scan.h>
14 #include <h/tws.h>
15 #include <h/utils.h>
16 #include <setjmp.h>
17 #include <signal.h>
18 #include <errno.h>
19 #include <sys/wait.h>
20 #include <sys/types.h>
21
22 /*
23 * MAJOR BUG:
24 * for a component containing addresses, ADDRFMT, if COMPRESS is also
25 * set, then addresses get split wrong (not at the spaces between commas).
26 * To fix this correctly, putstr() should know about "atomic" strings that
27 * must NOT be broken across lines. That's too difficult for right now
28 * (it turns out that there are a number of degernate cases), so in
29 * oneline(), instead of
30 *
31 * (*onelp == '\n' && !onelp[1])
32 *
33 * being a terminating condition,
34 *
35 * (*onelp == '\n' && (!onelp[1] || (flags & ADDRFMT)))
36 *
37 * is used instead. This cuts the line prematurely, and gives us a much
38 * better chance of getting things right.
39 */
40
41 #define ONECOMP 0
42 #define TWOCOMP 1
43 #define BODYCOMP 2
44
45 #define QUOTE '\\'
46
47 #define MHL_SWITCHES \
48 X("bell", 0, BELLSW) \
49 X("nobell", 0, NBELLSW) \
50 X("clear", 0, CLRSW) \
51 X("noclear", 0, NCLRSW) \
52 X("folder +folder", 0, FOLDSW) \
53 X("form formfile", 0, FORMSW) \
54 X("moreproc program", 0, PROGSW) \
55 X("nomoreproc", 0, NPROGSW) \
56 X("length lines", 0, LENSW) \
57 X("width columns", 0, WIDTHSW) \
58 X("sleep seconds", 0, SLEEPSW) \
59 X("dashstuffing", -12, BITSTUFFSW) /* interface from forw */ \
60 X("nodashstuffing", -14, NBITSTUFFSW) /* interface from forw */ \
61 X("version", 0, VERSIONSW) \
62 X("help", 0, HELPSW) \
63 X("forward", -7, FORW1SW) /* interface from forw */ \
64 X("forwall", -7, FORW2SW) /* interface from forw */ \
65 X("digest list", -6, DGSTSW) \
66 X("volume number", -6, VOLUMSW) \
67 X("issue number", -5, ISSUESW) \
68 X("nobody", -6, NBODYSW) \
69 X("fmtproc program", 0, FMTPROCSW) \
70 X("nofmtproc", 0, NFMTPROCSW) \
71
72 #define X(sw, minchars, id) id,
73 DEFINE_SWITCH_ENUM(MHL);
74 #undef X
75
76 #define X(sw, minchars, id) { sw, minchars, id },
77 DEFINE_SWITCH_ARRAY(MHL, mhlswitches);
78 #undef X
79
80 #define NOCOMPONENT 0x000001 /* don't show component name */
81 #define UPPERCASE 0x000002 /* display in all upper case */
82 #define CENTER 0x000004 /* center line */
83 #define CLEARTEXT 0x000008 /* cleartext */
84 #define EXTRA 0x000010 /* an "extra" component */
85 #define HDROUTPUT 0x000020 /* already output */
86 #define CLEARSCR 0x000040 /* clear screen */
87 #define LEFTADJUST 0x000080 /* left justify multiple lines */
88 #define COMPRESS 0x000100 /* compress text */
89 #define ADDRFMT 0x000200 /* contains addresses */
90 #define BELL 0x000400 /* sound bell at EOP */
91 #define DATEFMT 0x000800 /* contains dates */
92 #define FORMAT 0x001000 /* parse address/date/RFC-2047 field */
93 #define INIT 0x002000 /* initialize component */
94 #define SPLIT 0x010000 /* split headers (don't concatenate) */
95 #define NONEWLINE 0x020000 /* don't write trailing newline */
96 #define NOWRAP 0x040000 /* Don't wrap lines ever */
97 #define FMTFILTER 0x080000 /* Filter through format filter */
98 #define LBITS "\020\01NOCOMPONENT\02UPPERCASE\03CENTER\04CLEARTEXT\05EXTRA\06HDROUTPUT\07CLEARSCR\010LEFTADJUST\011COMPRESS\012ADDRFMT\013BELL\014DATEFMT\015FORMAT\016INIT\021SPLIT\022NONEWLINE\023NOWRAP\024FMTFILTER"
99 #define GFLAGS (NOCOMPONENT | UPPERCASE | CENTER | LEFTADJUST | COMPRESS | SPLIT | NOWRAP)
100
101 /*
102 * A format string to be used as a command-line argument to the body
103 * format filter.
104 */
105
106 struct arglist {
107 struct format *a_fmt;
108 char *a_nfs;
109 struct arglist *a_next;
110 };
111
112 /*
113 * Linked list of command line arguments for the body format filter. This
114 * USED to be in "struct mcomp", but the format API got cleaned up and even
115 * though it reduced the code we had to do, it make things more complicated
116 * for us. Specifically:
117 *
118 * - The interface to the hash table has been cleaned up, which means the
119 * rooting around in the hash table is no longer necessary (yay!). But
120 * this ALSO means that we have to make sure that we call our format
121 * compilation routines before we process the message, because the
122 * components need to be visible in the hash table so we can save them for
123 * later. So we moved them out of "mcomp" and now compile them right before
124 * header processing starts.
125 * - We also use format strings to handle other components in the mhl
126 * configuration (using "formatfield" and "decode"), but here life
127 * gets complicated: they aren't dealt with in the normal way. Instead
128 * of referring to a component like {from}, each component is processed
129 * using the special {text} component. But these format strings need to be
130 * compiled BEFORE we compile the format arguments; in the previous
131 * implementation they were compiled and scanned as the headers were
132 * read, and that would reset the hash table that we need to populate
133 * the components used by the body format filter. So we are compiling
134 * the formatfield component strings ahead of time and then scanning them
135 * later.
136 *
137 * Okay, fine ... this was broken before. But you know what? Fixing this
138 * the right way will make things easier down the road.
139 *
140 * One side-effect to this change: format strings are now compiled only once
141 * for components specified with "formatfield", but they are compiled for
142 * every message for format arguments.
143 */
144
145 static struct arglist *arglist_head;
146 static struct arglist *arglist_tail;
147 static int filter_nargs = 0;
148
149 /*
150 * Flags/options for each component
151 */
152
153 struct mcomp {
154 char *c_name; /* component name */
155 char *c_text; /* component text */
156 char *c_ovtxt; /* text overflow indicator */
157 char *c_nfs; /* iff FORMAT */
158 struct format *c_fmt; /* .. */
159 struct comp *c_c_text; /* Ref to {text} in FORMAT */
160 struct comp *c_c_error; /* Ref to {error} */
161 int c_offset; /* left margin indentation */
162 int c_ovoff; /* overflow indentation */
163 int c_width; /* width of field */
164 int c_cwidth; /* width of component */
165 int c_length; /* length in lines */
166 long c_flags;
167 struct mcomp *c_next;
168 };
169
170 static struct mcomp *msghd = NULL;
171 static struct mcomp *msgtl = NULL;
172 static struct mcomp *fmthd = NULL;
173 static struct mcomp *fmttl = NULL;
174
175 static struct mcomp global = {
176 NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, -1, 80, -1, 40, BELL, NULL
177 };
178
179 static struct mcomp holder = {
180 NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0, 0, 0, 0, NOCOMPONENT, NULL
181 };
182
183 struct pair {
184 char *p_name;
185 long p_flags;
186 };
187
188 static struct pair pairs[] = {
189 { "Date", DATEFMT },
190 { "From", ADDRFMT },
191 { "Sender", ADDRFMT },
192 { "Reply-To", ADDRFMT },
193 { "To", ADDRFMT },
194 { "cc", ADDRFMT },
195 { "Bcc", ADDRFMT },
196 { "Resent-Date", DATEFMT },
197 { "Resent-From", ADDRFMT },
198 { "Resent-Sender", ADDRFMT },
199 { "Resent-Reply-To", ADDRFMT },
200 { "Resent-To", ADDRFMT },
201 { "Resent-cc", ADDRFMT },
202 { "Resent-Bcc", ADDRFMT },
203 { NULL, 0 }
204 };
205
206 struct triple {
207 char *t_name;
208 long t_on;
209 long t_off;
210 };
211
212 static struct triple triples[] = {
213 { "nocomponent", NOCOMPONENT, 0 },
214 { "uppercase", UPPERCASE, 0 },
215 { "nouppercase", 0, UPPERCASE },
216 { "center", CENTER, 0 },
217 { "nocenter", 0, CENTER },
218 { "clearscreen", CLEARSCR, 0 },
219 { "noclearscreen", 0, CLEARSCR },
220 { "noclear", 0, CLEARSCR },
221 { "leftadjust", LEFTADJUST, 0 },
222 { "noleftadjust", 0, LEFTADJUST },
223 { "compress", COMPRESS, 0 },
224 { "nocompress", 0, COMPRESS },
225 { "split", SPLIT, 0 },
226 { "nosplit", 0, SPLIT },
227 { "addrfield", ADDRFMT, DATEFMT },
228 { "bell", BELL, 0 },
229 { "nobell", 0, BELL },
230 { "datefield", DATEFMT, ADDRFMT },
231 { "newline", 0, NONEWLINE },
232 { "nonewline", NONEWLINE, 0 },
233 { "wrap", 0, NOWRAP },
234 { "nowrap", NOWRAP, 0 },
235 { "format", FMTFILTER, 0 },
236 { "noformat", 0, FMTFILTER },
237 { NULL, 0, 0 }
238 };
239
240 static char *addrcomps[] = {
241 "from",
242 "sender",
243 "reply-to",
244 "to",
245 "cc",
246 "bcc",
247 "resent-from",
248 "resent-sender",
249 "resent-reply-to",
250 "resent-to",
251 "resent-cc",
252 "resent-bcc",
253 NULL
254 };
255
256
257 static int bellflg = 0;
258 static int clearflg = 0;
259 static int dashstuff = 0;
260 static int dobody = 1;
261 static int forwflg = 0;
262 static int forwall = 0;
263
264 static int sleepsw = NOTOK;
265
266 static char *digest = NULL;
267 static int volume = 0;
268 static int issue = 0;
269
270 static int exitstat = 0;
271 static int mhldebug = 0;
272
273 static int filesize = 0;
274
275 #define PITTY (-1)
276 #define NOTTY 0
277 #define ISTTY 1
278 static int ontty = NOTTY;
279
280 static int row;
281 static unsigned int column;
282
283 static int lm;
284 static int llim;
285 static int ovoff;
286 static int term;
287 static unsigned int wid;
288
289 static char *ovtxt;
290
291 static char *onelp;
292
293 static char *parptr;
294
295 static int num_ignores = 0;
296 static char *ignores[MAXARGS];
297
298 static jmp_buf env;
299 static jmp_buf mhlenv;
300
301 static char delim3[] = /* from forw.c */
302 "\n----------------------------------------------------------------------\n\n";
303 static char delim4[] = "\n------------------------------\n\n";
304
305 static FILE *(*mhl_action) () = (FILE *(*) ()) 0;
306
307 /*
308 * Redefine a couple of functions.
309 * These are undefined later in the code.
310 */
311 #define adios mhladios
312 #define done mhldone
313
314 /*
315 * prototypes
316 */
317 static void mhl_format (char *, int, int);
318 static int evalvar (struct mcomp *);
319 static int ptoi (char *, int *);
320 static int ptos (char *, char **);
321 static char *parse (void);
322 static void process (char *, char *, int, int);
323 static void mhlfile (FILE *, char *, int, int);
324 static int mcomp_flags (char *);
325 static char *mcomp_add (long, char *, char *);
326 static void mcomp_format (struct mcomp *, struct mcomp *);
327 static struct mcomp *add_queue (struct mcomp **, struct mcomp **, char *, char *, int);
328 static void free_queue (struct mcomp **, struct mcomp **);
329 static void putcomp (struct mcomp *, struct mcomp *, int);
330 static char *oneline (char *, long);
331 static void putstr (char *, long);
332 static void putch (char, long);
333 static void intrser (int);
334 static void pipeser (int);
335 static void quitser (int);
336 static void mhladios (char *, char *, ...);
337 static void mhldone (int);
338 static void m_popen (char *);
339 static void filterbody (struct mcomp *, char *, int, int, FILE *,
340 m_getfld_state_t);
341 static void compile_formatfield(struct mcomp *);
342 static void compile_filterargs (void);
343
344
345 int
346 mhl (int argc, char **argv)
347 {
348 int length = 0, nomore = 0;
349 unsigned int i, vecp = 0;
350 int width = 0;
351 char *cp, *folder = NULL, *form = NULL;
352 char buf[BUFSIZ], *files[MAXARGS];
353 char **argp, **arguments;
354
355 invo_name = r1bindex (argv[0], '/');
356
357 /* read user profile/context */
358 context_read();
359
360 arguments = getarguments (invo_name, argc, argv, 1);
361 argp = arguments;
362
363 if ((cp = getenv ("MHLDEBUG")) && *cp)
364 mhldebug++;
365
366 while ((cp = *argp++)) {
367 if (*cp == '-') {
368 switch (smatch (++cp, mhlswitches)) {
369 case AMBIGSW:
370 ambigsw (cp, mhlswitches);
371 done (1);
372 case UNKWNSW:
373 adios (NULL, "-%s unknown\n", cp);
374
375 case HELPSW:
376 snprintf (buf, sizeof(buf), "%s [switches] [files ...]", invo_name);
377 print_help (buf, mhlswitches, 1);
378 done (0);
379 case VERSIONSW:
380 print_version(invo_name);
381 done (0);
382
383 case BELLSW:
384 bellflg = 1;
385 continue;
386 case NBELLSW:
387 bellflg = -1;
388 continue;
389
390 case CLRSW:
391 clearflg = 1;
392 continue;
393 case NCLRSW:
394 clearflg = -1;
395 continue;
396
397 case FOLDSW:
398 if (!(folder = *argp++) || *folder == '-')
399 adios (NULL, "missing argument to %s", argp[-2]);
400 continue;
401 case FORMSW:
402 if (!(form = *argp++) || *form == '-')
403 adios (NULL, "missing argument to %s", argp[-2]);
404 continue;
405
406 case SLEEPSW:
407 if (!(cp = *argp++) || *cp == '-')
408 adios (NULL, "missing argument to %s", argp[-2]);
409 sleepsw = atoi (cp);/* ZERO ok! */
410 continue;
411
412 case PROGSW:
413 if (!(moreproc = *argp++) || *moreproc == '-')
414 adios (NULL, "missing argument to %s", argp[-2]);
415 continue;
416 case NPROGSW:
417 nomore++;
418 continue;
419
420 case FMTPROCSW:
421 if (!(formatproc = *argp++) || *formatproc == '-')
422 adios (NULL, "missing argument to %s", argp[-2]);
423 continue;
424 case NFMTPROCSW:
425 formatproc = NULL;
426 continue;
427
428 case LENSW:
429 if (!(cp = *argp++) || *cp == '-')
430 adios (NULL, "missing argument to %s", argp[-2]);
431 if ((length = atoi (cp)) < 1)
432 adios (NULL, "bad argument %s %s", argp[-2], cp);
433 continue;
434 case WIDTHSW:
435 if (!(cp = *argp++) || *cp == '-')
436 adios (NULL, "missing argument to %s", argp[-2]);
437 if ((width = atoi (cp)) < 1)
438 adios (NULL, "bad argument %s %s", argp[-2], cp);
439 continue;
440
441 case DGSTSW:
442 if (!(digest = *argp++) || *digest == '-')
443 adios (NULL, "missing argument to %s", argp[-2]);
444 continue;
445 case ISSUESW:
446 if (!(cp = *argp++) || *cp == '-')
447 adios (NULL, "missing argument to %s", argp[-2]);
448 if ((issue = atoi (cp)) < 1)
449 adios (NULL, "bad argument %s %s", argp[-2], cp);
450 continue;
451 case VOLUMSW:
452 if (!(cp = *argp++) || *cp == '-')
453 adios (NULL, "missing argument to %s", argp[-2]);
454 if ((volume = atoi (cp)) < 1)
455 adios (NULL, "bad argument %s %s", argp[-2], cp);
456 continue;
457
458 case FORW2SW:
459 forwall++; /* fall */
460 case FORW1SW:
461 forwflg++;
462 clearflg = -1;/* XXX */
463 continue;
464
465 case BITSTUFFSW:
466 dashstuff = 1; /* trinary logic */
467 continue;
468 case NBITSTUFFSW:
469 dashstuff = -1; /* trinary logic */
470 continue;
471
472 case NBODYSW:
473 dobody = 0;
474 continue;
475 }
476 }
477 files[vecp++] = cp;
478 }
479
480 if (!folder)
481 folder = getenv ("mhfolder");
482
483 if (isatty (fileno (stdout))) {
484 if (!nomore && !sc_hardcopy() && moreproc && *moreproc != '\0') {
485 if (mhl_action) {
486 SIGNAL (SIGINT, SIG_IGN);
487 SIGNAL2 (SIGQUIT, quitser);
488 }
489 SIGNAL2 (SIGPIPE, pipeser);
490 m_popen (moreproc);
491 ontty = PITTY;
492 } else {
493 SIGNAL (SIGINT, SIG_IGN);
494 SIGNAL2 (SIGQUIT, quitser);
495 ontty = ISTTY;
496 }
497 } else {
498 ontty = NOTTY;
499 }
500
501 mhl_format (form ? form : mhlformat, length, width);
502
503 if (vecp == 0) {
504 process (folder, NULL, 1, vecp = 1);
505 } else {
506 for (i = 0; i < vecp; i++)
507 process (folder, files[i], i + 1, vecp);
508 }
509
510 if (forwall) {
511 if (digest) {
512 printf ("%s", delim4);
513 if (volume == 0) {
514 snprintf (buf, sizeof(buf), "End of %s Digest\n", digest);
515 } else {
516 snprintf (buf, sizeof(buf), "End of %s Digest [Volume %d Issue %d]\n",
517 digest, volume, issue);
518 }
519 i = strlen (buf);
520 for (cp = buf + i; i > 1; i--)
521 *cp++ = '*';
522 *cp++ = '\n';
523 *cp = 0;
524 printf ("%s", buf);
525 }
526 else
527 printf ("\n------- End of Forwarded Message%s\n",
528 vecp > 1 ? "s" : "");
529 }
530
531 fflush(stdout);
532 if(ferror(stdout)){
533 adios("output", "error writing");
534 }
535
536 if (clearflg > 0 && ontty == NOTTY)
537 clear_screen ();
538
539 if (ontty == PITTY)
540 m_pclose ();
541
542 return exitstat;
543 }
544
545
546 static void
547 mhl_format (char *file, int length, int width)
548 {
549 int i;
550 char *bp, *cp, **ip;
551 char *ap, buffer[BUFSIZ], name[NAMESZ];
552 struct mcomp *c1;
553 struct stat st;
554 FILE *fp;
555 static dev_t dev = 0;
556 static ino_t ino = 0;
557 static time_t mtime = 0;
558
559 if (fmthd != NULL) {
560 if (stat (etcpath (file), &st) != NOTOK
561 && mtime == st.st_mtime
562 && dev == st.st_dev
563 && ino == st.st_ino)
564 goto out;
565 else
566 free_queue (&fmthd, &fmttl);
567 }
568
569 if ((fp = fopen (etcpath (file), "r")) == NULL)
570 adios (file, "unable to open format file");
571
572 if (fstat (fileno (fp), &st) != NOTOK) {
573 mtime = st.st_mtime;
574 dev = st.st_dev;
575 ino = st.st_ino;
576 }
577
578 global.c_ovtxt = global.c_nfs = NULL;
579 global.c_fmt = NULL;
580 global.c_offset = 0;
581 global.c_ovoff = -1;
582 if ((i = sc_width ()) > 5)
583 global.c_width = i;
584 global.c_cwidth = -1;
585 if ((i = sc_length ()) > 5)
586 global.c_length = i - 1;
587 global.c_flags = BELL; /* BELL is default */
588 *(ip = ignores) = NULL;
589 filter_nargs = 0;
590
591 while (vfgets (fp, &ap) == OK) {
592 bp = ap;
593 if (*bp == ';')
594 continue;
595
596 if ((cp = strchr(bp, '\n')))
597 *cp = 0;
598
599 if (*bp == ':') {
600 c1 = add_queue (&fmthd, &fmttl, NULL, bp + 1, CLEARTEXT);
601 continue;
602 }
603
604 parptr = bp;
605 strncpy (name, parse(), sizeof(name));
606 switch (*parptr) {
607 case '\0':
608 case ',':
609 case '=':
610 /*
611 * Split this list of fields to ignore, and copy
612 * it to the end of the current "ignores" list.
613 */
614 if (!mh_strcasecmp (name, "ignores")) {
615 char **tmparray, **p;
616 int n = 0;
617
618 /* split the fields */
619 tmparray = brkstring (getcpy (++parptr), ",", NULL);
620
621 /* count number of fields split */
622 p = tmparray;
623 while (*p++)
624 n++;
625
626 /* copy pointers to split fields to ignores array */
627 ip = copyip (tmparray, ip, MAXARGS - num_ignores);
628 num_ignores += n;
629 continue;
630 }
631 parptr = bp;
632 while (*parptr) {
633 if (evalvar (&global))
634 adios (NULL, "format file syntax error: %s", bp);
635 if (*parptr)
636 parptr++;
637 }
638 continue;
639
640 case ':':
641 c1 = add_queue (&fmthd, &fmttl, name, NULL, INIT);
642 while (*parptr == ':' || *parptr == ',') {
643 parptr++;
644 if (evalvar (c1))
645 adios (NULL, "format file syntax error: %s", bp);
646 }
647 if (!c1->c_nfs && global.c_nfs) {
648 if (c1->c_flags & DATEFMT) {
649 if (global.c_flags & DATEFMT) {
650 c1->c_nfs = getcpy (global.c_nfs);
651 compile_formatfield(c1);
652 }
653 }
654 else
655 if (c1->c_flags & ADDRFMT) {
656 if (global.c_flags & ADDRFMT) {
657 c1->c_nfs = getcpy (global.c_nfs);
658 compile_formatfield(c1);
659 }
660 }
661 }
662 continue;
663
664 default:
665 adios (NULL, "format file syntax error: %s", bp);
666 }
667 }
668 fclose (fp);
669
670 if (mhldebug) {
671 for (c1 = fmthd; c1; c1 = c1->c_next) {
672 fprintf (stderr, "c1: name=\"%s\" text=\"%s\" ovtxt=\"%s\"\n",
673 c1->c_name, c1->c_text, c1->c_ovtxt);
674 fprintf (stderr, "\tnfs=0x%x fmt=0x%x\n",
675 (unsigned int)(unsigned long) c1->c_nfs,
676 (unsigned int)(unsigned long) c1->c_fmt);
677 fprintf (stderr, "\toffset=%d ovoff=%d width=%d cwidth=%d length=%d\n",
678 c1->c_offset, c1->c_ovoff, c1->c_width,
679 c1->c_cwidth, c1->c_length);
680 fprintf (stderr, "\tflags=%s\n",
681 snprintb (buffer, sizeof(buffer), (unsigned) c1->c_flags, LBITS));
682 }
683 }
684
685 out:
686 if (clearflg == 1) {
687 global.c_flags |= CLEARSCR;
688 } else {
689 if (clearflg == -1)
690 global.c_flags &= ~CLEARSCR;
691 }
692
693 switch (bellflg) { /* command line may override format file */
694 case 1:
695 global.c_flags |= BELL;
696 break;
697 case -1:
698 global.c_flags &= ~BELL;
699 break;
700 }
701
702 if (length)
703 global.c_length = length;
704 if (width)
705 global.c_width = width;
706 if (global.c_length < 5)
707 global.c_length = 10000;
708 if (global.c_width < 5)
709 global.c_width = 10000;
710 }
711
712
713 static int
714 evalvar (struct mcomp *c1)
715 {
716 char *cp, name[NAMESZ];
717 struct triple *ap;
718
719 if (!*parptr)
720 return 0;
721 strncpy (name, parse(), sizeof(name));
722
723 if (!mh_strcasecmp (name, "component")) {
724 if (ptos (name, &c1->c_text))
725 return 1;
726 c1->c_flags &= ~NOCOMPONENT;
727 return 0;
728 }
729
730 if (!mh_strcasecmp (name, "overflowtext"))
731 return ptos (name, &c1->c_ovtxt);
732
733 if (!mh_strcasecmp (name, "formatfield")) {
734 if (ptos (name, &cp))
735 return 1;
736 c1->c_nfs = getcpy (new_fs (NULL, NULL, cp));
737 compile_formatfield(c1);
738 c1->c_flags |= FORMAT;
739 return 0;
740 }
741
742 if (!mh_strcasecmp (name, "decode")) {
743 c1->c_nfs = getcpy (new_fs (NULL, NULL, "%(decode{text})"));
744 compile_formatfield(c1);
745 c1->c_flags |= FORMAT;
746 return 0;
747 }
748
749 if (!mh_strcasecmp (name, "offset"))
750 return ptoi (name, &c1->c_offset);
751 if (!mh_strcasecmp (name, "overflowoffset"))
752 return ptoi (name, &c1->c_ovoff);
753 if (!mh_strcasecmp (name, "width"))
754 return ptoi (name, &c1->c_width);
755 if (!mh_strcasecmp (name, "compwidth"))
756 return ptoi (name, &c1->c_cwidth);
757 if (!mh_strcasecmp (name, "length"))
758 return ptoi (name, &c1->c_length);
759 if (!mh_strcasecmp (name, "nodashstuffing"))
760 return (dashstuff = -1);
761
762 for (ap = triples; ap->t_name; ap++)
763 if (!mh_strcasecmp (ap->t_name, name)) {
764 c1->c_flags |= ap->t_on;
765 c1->c_flags &= ~ap->t_off;
766 return 0;
767 }
768
769 if (!mh_strcasecmp (name, "formatarg")) {
770 struct arglist *args;
771
772 if (ptos (name, &cp))
773 return 1;
774
775 if (mh_strcasecmp (c1->c_name, "body")) {
776 advise (NULL, "format filters are currently only supported on "
777 "the \"body\" component");
778 return 1;
779 }
780
781 args = (struct arglist *) calloc((size_t) 1, sizeof(struct arglist));
782
783 if (arglist_tail)
784 arglist_tail->a_next = args;
785
786 arglist_tail = args;
787
788 if (! arglist_head)
789 arglist_head = args;
790
791 args->a_nfs = getcpy (new_fs (NULL, NULL, cp));
792 filter_nargs++;
793
794 return 0;
795 }
796
797 return 1;
798 }
799
800
801 static int
802 ptoi (char *name, int *i)
803 {
804 char *cp;
805
806 if (*parptr++ != '=' || !*(cp = parse ())) {
807 advise (NULL, "missing argument to variable %s", name);
808 return 1;
809 }
810
811 *i = atoi (cp);
812 return 0;
813 }
814
815
816 static int
817 ptos (char *name, char **s)
818 {
819 char c, *cp;
820
821 if (*parptr++ != '=') {
822 advise (NULL, "missing argument to variable %s", name);
823 return 1;
824 }
825
826 if (*parptr != '"') {
827 for (cp = parptr;
828 *parptr && *parptr != ':' && *parptr != ',';
829 parptr++)
830 continue;
831 } else {
832 for (cp = ++parptr; *parptr && *parptr != '"'; parptr++)
833 if (*parptr == QUOTE)
834 if (!*++parptr)
835 parptr--;
836 }
837 c = *parptr;
838 *parptr = 0;
839 *s = getcpy (cp);
840 if ((*parptr = c) == '"')
841 parptr++;
842 return 0;
843 }
844
845
846 static char *
847 parse (void)
848 {
849 int c;
850 char *cp;
851 static char result[NAMESZ];
852
853 for (cp = result; *parptr && (cp - result < NAMESZ); parptr++) {
854 c = *parptr;
855 if (isalnum (c)
856 || c == '.'
857 || c == '-'
858 || c == '_'
859 || c =='['
860 || c == ']')
861 *cp++ = c;
862 else
863 break;
864 }
865 *cp = '\0';
866
867 return result;
868 }
869
870
871 /*
872 * Process one file/message
873 */
874
875 static void
876 process (char *folder, char *fname, int ofilen, int ofilec)
877 {
878 char *cp = NULL;
879 FILE *fp = NULL;
880 struct mcomp *c1;
881 struct stat st;
882 struct arglist *ap;
883
884 switch (setjmp (env)) {
885 case OK:
886 if (fname) {
887 fp = mhl_action ? (*mhl_action) (fname) : fopen (fname, "r");
888 if (fp == NULL) {
889 advise (fname, "unable to open");
890 exitstat++;
891 return;
892 }
893 } else {
894 fname = "(stdin)";
895 fp = stdin;
896 }
897 if (fstat(fileno(fp), &st) == 0) {
898 filesize = st.st_size;
899 } else {
900 filesize = 0;
901 }
902 cp = folder ? concat (folder, ":", fname, NULL) : getcpy (fname);
903 if (ontty != PITTY)
904 SIGNAL (SIGINT, intrser);
905 mhlfile (fp, cp, ofilen, ofilec); /* FALL THROUGH! */
906
907 for (ap = arglist_head; ap; ap = ap->a_next) {
908 fmt_free(ap->a_fmt, 0);
909 ap->a_fmt = NULL;
910 }
911
912 if (arglist_head)
913 fmt_free(NULL, 1);
914
915 default:
916 if (ontty != PITTY)
917 SIGNAL (SIGINT, SIG_IGN);
918 if (mhl_action == NULL && fp != stdin)
919 fclose (fp);
920 free (cp);
921 if (holder.c_text) {
922 free (holder.c_text);
923 holder.c_text = NULL;
924 }
925 free_queue (&msghd, &msgtl);
926 for (c1 = fmthd; c1; c1 = c1->c_next)
927 c1->c_flags &= ~HDROUTPUT;
928 break;
929 }
930
931 }
932
933
934 static void
935 mhlfile (FILE *fp, char *mname, int ofilen, int ofilec)
936 {
937 int state, bucket;
938 struct mcomp *c1, *c2, *c3;
939 char **ip, name[NAMESZ], buf[BUFSIZ];
940 m_getfld_state_t gstate = 0;
941
942 compile_filterargs();
943
944 if (forwall) {
945 if (digest)
946 printf ("%s", ofilen == 1 ? delim3 : delim4);
947 else {
948 printf ("\n-------");
949 if (ofilen == 1)
950 printf (" Forwarded Message%s", ofilec > 1 ? "s" : "");
951 else
952 printf (" Message %d", ofilen);
953 printf ("\n\n");
954 }
955 } else {
956 switch (ontty) {
957 case PITTY:
958 if (ofilec > 1) {
959 if (ofilen > 1) {
960 if ((global.c_flags & CLEARSCR))
961 clear_screen ();
962 else
963 printf ("\n\n\n");
964 }
965 printf (">>> %s\n\n", mname);
966 }
967 break;
968
969 case ISTTY:
970 strncpy (buf, "\n", sizeof(buf));
971 if (ofilec > 1) {
972 if (SOprintf ("Press <return> to list \"%s\"...", mname)) {
973 if (ofilen > 1)
974 printf ("\n\n\n");
975 printf ("Press <return> to list \"%s\"...", mname);
976 }
977 fflush (stdout);
978 buf[0] = 0;
979 read (fileno (stdout), buf, sizeof(buf));
980 }
981 if (strchr(buf, '\n')) {
982 if ((global.c_flags & CLEARSCR))
983 clear_screen ();
984 }
985 else
986 printf ("\n");
987 break;
988
989 default:
990 if (ofilec > 1) {
991 if (ofilen > 1) {
992 printf ("\n\n\n");
993 if (clearflg > 0)
994 clear_screen ();
995 }
996 printf (">>> %s\n\n", mname);
997 }
998 break;
999 }
1000 }
1001
1002 for (;;) {
1003 int bufsz = sizeof buf;
1004 switch (state = m_getfld (&gstate, name, buf, &bufsz, fp)) {
1005 case FLD:
1006 case FLDPLUS:
1007 bucket = fmt_addcomptext(name, buf);
1008 for (ip = ignores; *ip; ip++)
1009 if (!mh_strcasecmp (name, *ip)) {
1010 while (state == FLDPLUS) {
1011 bufsz = sizeof buf;
1012 state = m_getfld (&gstate, name, buf, &bufsz, fp);
1013 fmt_appendcomp(bucket, name, buf);
1014 }
1015 break;
1016 }
1017 if (*ip)
1018 continue;
1019
1020 for (c2 = fmthd; c2; c2 = c2->c_next)
1021 if (!mh_strcasecmp (c2->c_name, name))
1022 break;
1023 c1 = NULL;
1024 if (!((c3 = c2 ? c2 : &global)->c_flags & SPLIT))
1025 for (c1 = msghd; c1; c1 = c1->c_next)
1026 if (!mh_strcasecmp (c1->c_name, c3->c_name)) {
1027 c1->c_text =
1028 mcomp_add (c1->c_flags, buf, c1->c_text);
1029 break;
1030 }
1031 if (c1 == NULL)
1032 c1 = add_queue (&msghd, &msgtl, name, buf, 0);
1033 while (state == FLDPLUS) {
1034 bufsz = sizeof buf;
1035 state = m_getfld (&gstate, name, buf, &bufsz, fp);
1036 c1->c_text = add (buf, c1->c_text);
1037 fmt_appendcomp(bucket, name, buf);
1038 }
1039 if (c2 == NULL)
1040 c1->c_flags |= EXTRA;
1041 continue;
1042
1043 case BODY:
1044 case FILEEOF:
1045 row = column = 0;
1046 for (c1 = fmthd; c1; c1 = c1->c_next) {
1047 if (c1->c_flags & CLEARTEXT) {
1048 putcomp (c1, c1, ONECOMP);
1049 continue;
1050 }
1051 if (!mh_strcasecmp (c1->c_name, "messagename")) {
1052 holder.c_text = concat ("(Message ", mname, ")\n",
1053 NULL);
1054 putcomp (c1, &holder, ONECOMP);
1055 free (holder.c_text);
1056 holder.c_text = NULL;
1057 continue;
1058 }
1059 if (!mh_strcasecmp (c1->c_name, "extras")) {
1060 for (c2 = msghd; c2; c2 = c2->c_next)
1061 if (c2->c_flags & EXTRA)
1062 putcomp (c1, c2, TWOCOMP);
1063 continue;
1064 }
1065 if (dobody && !mh_strcasecmp (c1->c_name, "body")) {
1066 if (c1->c_flags & FMTFILTER && state == BODY &&
1067 formatproc != NULL) {
1068 filterbody(c1, buf, sizeof(buf), state, fp, gstate);
1069 } else {
1070 holder.c_text = mh_xmalloc (sizeof(buf));
1071 strncpy (holder.c_text, buf, sizeof(buf));
1072 while (state == BODY) {
1073 putcomp (c1, &holder, BODYCOMP);
1074 bufsz = sizeof buf;
1075 state = m_getfld (&gstate, name, holder.c_text,
1076 &bufsz, fp);
1077 }
1078 free (holder.c_text);
1079 holder.c_text = NULL;
1080 }
1081 continue;
1082 }
1083 for (c2 = msghd; c2; c2 = c2->c_next)
1084 if (!mh_strcasecmp (c2->c_name, c1->c_name)) {
1085 putcomp (c1, c2, ONECOMP);
1086 if (!(c1->c_flags & SPLIT))
1087 break;
1088 }
1089 }
1090 m_getfld_state_destroy (&gstate);
1091 return;
1092
1093 case LENERR:
1094 case FMTERR:
1095 advise (NULL, "format error in message %s", mname);
1096 exitstat++;
1097 m_getfld_state_destroy (&gstate);
1098 return;
1099
1100 default:
1101 adios (NULL, "getfld() returned %d", state);
1102 }
1103 }
1104 }
1105
1106
1107 static int
1108 mcomp_flags (char *name)
1109 {
1110 struct pair *ap;
1111
1112 for (ap = pairs; ap->p_name; ap++)
1113 if (!mh_strcasecmp (ap->p_name, name))
1114 return (ap->p_flags);
1115
1116 return 0;
1117 }
1118
1119
1120 static char *
1121 mcomp_add (long flags, char *s1, char *s2)
1122 {
1123 char *dp;
1124
1125 if (!(flags & ADDRFMT))
1126 return add (s1, s2);
1127
1128 if (s2 && *(dp = s2 + strlen (s2) - 1) == '\n')
1129 *dp = 0;
1130
1131 return add (s1, add (",\n", s2));
1132 }
1133
1134
1135 struct pqpair {
1136 char *pq_text;
1137 char *pq_error;
1138 struct pqpair *pq_next;
1139 };
1140
1141
1142 static void
1143 mcomp_format (struct mcomp *c1, struct mcomp *c2)
1144 {
1145 int dat[5];
1146 char *ap, *cp;
1147 char buffer[BUFSIZ], error[BUFSIZ];
1148 struct pqpair *p, *q;
1149 struct pqpair pq;
1150 struct mailname *mp;
1151
1152 ap = c2->c_text;
1153 c2->c_text = NULL;
1154 dat[0] = 0;
1155 dat[1] = 0;
1156 dat[2] = filesize;
1157 dat[3] = sizeof(buffer) - 1;
1158 dat[4] = 0;
1159
1160 if (!(c1->c_flags & ADDRFMT)) {
1161 if (c1->c_c_text)
1162 c1->c_c_text->c_text = ap;
1163 if ((cp = strrchr(ap, '\n'))) /* drop ending newline */
1164 if (!cp[1])
1165 *cp = 0;
1166
1167 fmt_scan (c1->c_fmt, buffer, sizeof buffer - 1, sizeof buffer - 1, dat);
1168 /* Don't need to append a newline, dctime() already did */
1169 c2->c_text = getcpy (buffer);
1170
1171 /* ap is now owned by the component struct, so do NOT free it here */
1172 return;
1173 }
1174
1175 (q = &pq)->pq_next = NULL;
1176 while ((cp = getname (ap))) {
1177 if ((p = (struct pqpair *) calloc ((size_t) 1, sizeof(*p))) == NULL)
1178 adios (NULL, "unable to allocate pqpair memory");
1179
1180 if ((mp = getm (cp, NULL, 0, AD_NAME, error)) == NULL) {
1181 p->pq_text = getcpy (cp);
1182 p->pq_error = getcpy (error);
1183 } else {
1184 p->pq_text = getcpy (mp->m_text);
1185 mnfree (mp);
1186 }
1187 q = (q->pq_next = p);
1188 }
1189
1190 for (p = pq.pq_next; p; p = q) {
1191 if (c1->c_c_text) {
1192 c1->c_c_text->c_text = p->pq_text;
1193 p->pq_text = NULL;
1194 }
1195 if (c1->c_c_error) {
1196 c1->c_c_error->c_text = p->pq_error;
1197 p->pq_error = NULL;
1198 }
1199
1200 fmt_scan (c1->c_fmt, buffer, sizeof buffer - 1, sizeof buffer - 1, dat);
1201 if (*buffer) {
1202 if (c2->c_text)
1203 c2->c_text = add (",\n", c2->c_text);
1204 if (*(cp = buffer + strlen (buffer) - 1) == '\n')
1205 *cp = 0;
1206 c2->c_text = add (buffer, c2->c_text);
1207 }
1208
1209 if (p->pq_text)
1210 free (p->pq_text);
1211 if (p->pq_error)
1212 free (p->pq_error);
1213 q = p->pq_next;
1214 free ((char *) p);
1215 }
1216
1217 c2->c_text = add ("\n", c2->c_text);
1218 free (ap);
1219 }
1220
1221
1222 static struct mcomp *
1223 add_queue (struct mcomp **head, struct mcomp **tail, char *name, char *text, int flags)
1224 {
1225 struct mcomp *c1;
1226
1227 if ((c1 = (struct mcomp *) calloc ((size_t) 1, sizeof(*c1))) == NULL)
1228 adios (NULL, "unable to allocate comp memory");
1229
1230 c1->c_flags = flags & ~INIT;
1231 if ((c1->c_name = name ? getcpy (name) : NULL))
1232 c1->c_flags |= mcomp_flags (c1->c_name);
1233 c1->c_text = text ? getcpy (text) : NULL;
1234 if (flags & INIT) {
1235 if (global.c_ovtxt)
1236 c1->c_ovtxt = getcpy (global.c_ovtxt);
1237 c1->c_offset = global.c_offset;
1238 c1->c_ovoff = global. c_ovoff;
1239 c1->c_width = c1->c_length = 0;
1240 c1->c_cwidth = global.c_cwidth;
1241 c1->c_flags |= global.c_flags & GFLAGS;
1242 }
1243 if (*head == NULL)
1244 *head = c1;
1245 if (*tail != NULL)
1246 (*tail)->c_next = c1;
1247 *tail = c1;
1248
1249 return c1;
1250 }
1251
1252
1253 static void
1254 free_queue (struct mcomp **head, struct mcomp **tail)
1255 {
1256 struct mcomp *c1, *c2;
1257
1258 for (c1 = *head; c1; c1 = c2) {
1259 c2 = c1->c_next;
1260 if (c1->c_name)
1261 free (c1->c_name);
1262 if (c1->c_text)
1263 free (c1->c_text);
1264 if (c1->c_ovtxt)
1265 free (c1->c_ovtxt);
1266 if (c1->c_nfs)
1267 free (c1->c_nfs);
1268 if (c1->c_fmt)
1269 fmt_free (c1->c_fmt, 0);
1270 free ((char *) c1);
1271 }
1272
1273 *head = *tail = NULL;
1274 }
1275
1276
1277 static void
1278 putcomp (struct mcomp *c1, struct mcomp *c2, int flag)
1279 {
1280 int count, cchdr;
1281 char *cp;
1282
1283 cchdr = 0;
1284 lm = 0;
1285 llim = c1->c_length ? c1->c_length : -1;
1286 wid = c1->c_width ? c1->c_width : global.c_width;
1287 ovoff = (c1->c_ovoff >= 0 ? c1->c_ovoff : global.c_ovoff)
1288 + c1->c_offset;
1289 if ((ovtxt = c1->c_ovtxt ? c1->c_ovtxt : global.c_ovtxt) == NULL)
1290 ovtxt = "";
1291 if (wid < ovoff + strlen (ovtxt) + 5)
1292 adios (NULL, "component: %s width(%d) too small for overflow(%d)",
1293 c1->c_name, wid, ovoff + strlen (ovtxt) + 5);
1294 onelp = NULL;
1295
1296 if (c1->c_flags & CLEARTEXT) {
1297 putstr (c1->c_text, c1->c_flags);
1298 putstr ("\n", c1->c_flags);
1299 return;
1300 }
1301
1302 if (c1->c_nfs && (c1->c_flags & (ADDRFMT | DATEFMT | FORMAT)))
1303 mcomp_format (c1, c2);
1304
1305 if (c1->c_flags & CENTER) {
1306 count = (c1->c_width ? c1->c_width : global.c_width)
1307 - c1->c_offset - strlen (c2->c_text);
1308 if (!(c1->c_flags & HDROUTPUT) && !(c1->c_flags & NOCOMPONENT))
1309 count -= strlen (c1->c_text ? c1->c_text : c1->c_name) + 2;
1310 lm = c1->c_offset + (count / 2);
1311 } else {
1312 if (c1->c_offset)
1313 lm = c1->c_offset;
1314 }
1315
1316 if (!(c1->c_flags & HDROUTPUT) && !(c1->c_flags & NOCOMPONENT)) {
1317 if (c1->c_flags & UPPERCASE) /* uppercase component also */
1318 for (cp = (c1->c_text ? c1->c_text : c1->c_name); *cp; cp++)
1319 if (islower ((unsigned char) *cp))
1320 *cp = toupper ((unsigned char) *cp);
1321 putstr (c1->c_text ? c1->c_text : c1->c_name, c1->c_flags);
1322 if (flag != BODYCOMP) {
1323 putstr (": ", c1->c_flags);
1324 if (!(c1->c_flags & SPLIT))
1325 c1->c_flags |= HDROUTPUT;
1326
1327 cchdr++;
1328 if ((count = c1->c_cwidth -
1329 strlen (c1->c_text ? c1->c_text : c1->c_name) - 2) > 0)
1330 while (count--)
1331 putstr (" ", c1->c_flags);
1332 }
1333 else
1334 c1->c_flags |= HDROUTPUT; /* for BODYCOMP */
1335 }
1336
1337 if (flag == TWOCOMP
1338 && !(c2->c_flags & HDROUTPUT)
1339 && !(c2->c_flags & NOCOMPONENT)) {
1340 if (c1->c_flags & UPPERCASE)
1341 for (cp = c2->c_name; *cp; cp++)
1342 if (islower ((unsigned char) *cp))
1343 *cp = toupper ((unsigned char) *cp);
1344 putstr (c2->c_name, c1->c_flags);
1345 putstr (": ", c1->c_flags);
1346 if (!(c1->c_flags & SPLIT))
1347 c2->c_flags |= HDROUTPUT;
1348
1349 cchdr++;
1350 if ((count = c1->c_cwidth - strlen (c2->c_name) - 2) > 0)
1351 while (count--)
1352 putstr (" ", c1->c_flags);
1353 }
1354 if (c1->c_flags & UPPERCASE)
1355 for (cp = c2->c_text; *cp; cp++)
1356 if (islower ((unsigned char) *cp))
1357 *cp = toupper ((unsigned char) *cp);
1358
1359 count = 0;
1360 if (cchdr) {
1361 if (flag == TWOCOMP)
1362 count = (c1->c_cwidth >= 0) ? c1->c_cwidth
1363 : (int) strlen (c2->c_name) + 2;
1364 else
1365 count = (c1->c_cwidth >= 0) ? (size_t) c1->c_cwidth
1366 : strlen (c1->c_text ? c1->c_text : c1->c_name) + 2;
1367 }
1368 count += c1->c_offset;
1369
1370 if ((cp = oneline (c2->c_text, c1->c_flags)))
1371 putstr(cp, c1->c_flags);
1372 if (term == '\n')
1373 putstr ("\n", c1->c_flags);
1374 while ((cp = oneline (c2->c_text, c1->c_flags))) {
1375 lm = count;
1376 if (flag == BODYCOMP
1377 && !(c1->c_flags & NOCOMPONENT))
1378 putstr (c1->c_text ? c1->c_text : c1->c_name, c1->c_flags);
1379 if (*cp)
1380 putstr (cp, c1->c_flags);
1381 if (term == '\n')
1382 putstr ("\n", c1->c_flags);
1383 }
1384 if (flag == BODYCOMP && term == '\n')
1385 c1->c_flags &= ~HDROUTPUT; /* Buffer ended on a newline */
1386 }
1387
1388
1389 static char *
1390 oneline (char *stuff, long flags)
1391 {
1392 int spc;
1393 char *cp, *ret;
1394
1395 if (onelp == NULL)
1396 onelp = stuff;
1397 if (*onelp == 0)
1398 return (onelp = NULL);
1399
1400 ret = onelp;
1401 term = 0;
1402 if (flags & COMPRESS) {
1403 for (spc = 1, cp = ret; *onelp; onelp++)
1404 if (isspace ((unsigned char) *onelp)) {
1405 if (*onelp == '\n' && (!onelp[1] || (flags & ADDRFMT))) {
1406 term = '\n';
1407 *onelp++ = 0;
1408 break;
1409 }
1410 else
1411 if (!spc) {
1412 *cp++ = ' ';
1413 spc++;
1414 }
1415 }
1416 else {
1417 *cp++ = *onelp;
1418 spc = 0;
1419 }
1420
1421 *cp = 0;
1422 }
1423 else {
1424 while (*onelp && *onelp != '\n')
1425 onelp++;
1426 if (*onelp == '\n') {
1427 term = '\n';
1428 *onelp++ = 0;
1429 }
1430 if (flags & LEFTADJUST)
1431 while (*ret == ' ' || *ret == '\t')
1432 ret++;
1433 }
1434 if (*onelp == 0 && term == '\n' && (flags & NONEWLINE))
1435 term = 0;
1436
1437 return ret;
1438 }
1439
1440
1441 static void
1442 putstr (char *string, long flags)
1443 {
1444 if (!column && lm > 0) {
1445 while (lm > 0)
1446 if (lm >= 8) {
1447 putch ('\t', flags);
1448 lm -= 8;
1449 }
1450 else {
1451 putch (' ', flags);
1452 lm--;
1453 }
1454 }
1455 lm = 0;
1456 while (*string)
1457 putch (*string++, flags);
1458 }
1459
1460
1461 static void
1462 putch (char ch, long flags)
1463 {
1464 char buf[BUFSIZ];
1465
1466 if (llim == 0)
1467 return;
1468
1469 switch (ch) {
1470 case '\n':
1471 if (llim > 0)
1472 llim--;
1473 column = 0;
1474 row++;
1475 if (ontty != ISTTY || row != global.c_length)
1476 break;
1477 if (global.c_flags & BELL)
1478 putchar ('\007');
1479 fflush (stdout);
1480 buf[0] = 0;
1481 read (fileno (stdout), buf, sizeof(buf));
1482 if (strchr(buf, '\n')) {
1483 if (global.c_flags & CLEARSCR)
1484 clear_screen ();
1485 row = 0;
1486 } else {
1487 putchar ('\n');
1488 row = global.c_length / 3;
1489 }
1490 return;
1491
1492 case '\t':
1493 column |= 07;
1494 column++;
1495 break;
1496
1497 case '\b':
1498 column--;
1499 break;
1500
1501 case '\r':
1502 column = 0;
1503 break;
1504
1505 default:
1506 /*
1507 * If we are forwarding this message, and the first
1508 * column contains a dash, then add a dash and a space.
1509 */
1510 if (column == 0 && forwflg && (dashstuff >= 0) && ch == '-') {
1511 putchar ('-');
1512 putchar (' ');
1513 }
1514 if (ch >= ' ')
1515 column++;
1516 break;
1517 }
1518
1519 if (column >= wid && (flags & NOWRAP) == 0) {
1520 putch ('\n', flags);
1521 if (ovoff > 0)
1522 lm = ovoff;
1523 putstr (ovtxt ? ovtxt : "", flags);
1524 putch (ch, flags);
1525 return;
1526 }
1527
1528 putchar (ch);
1529 }
1530
1531
1532 static void
1533 intrser (int i)
1534 {
1535 NMH_UNUSED (i);
1536
1537 discard (stdout);
1538 putchar ('\n');
1539 longjmp (env, DONE);
1540 }
1541
1542
1543 static void
1544 pipeser (int i)
1545 {
1546 NMH_UNUSED (i);
1547
1548 done (NOTOK);
1549 }
1550
1551
1552 static void
1553 quitser (int i)
1554 {
1555 NMH_UNUSED (i);
1556
1557 putchar ('\n');
1558 fflush (stdout);
1559 done (NOTOK);
1560 }
1561
1562
1563 int
1564 mhlsbr (int argc, char **argv, FILE *(*action)())
1565 {
1566 SIGNAL_HANDLER istat = NULL, pstat = NULL, qstat = NULL;
1567 char *cp = NULL;
1568 struct mcomp *c1;
1569 struct arglist *a, *a2;
1570
1571 switch (setjmp (mhlenv)) {
1572 case OK:
1573 cp = invo_name;
1574 sleepsw = 0; /* XXX */
1575 bellflg = clearflg = forwflg = forwall = exitstat = 0;
1576 digest = NULL;
1577 ontty = NOTTY;
1578 mhl_action = action;
1579
1580 /*
1581 * If signal is at default action, then start ignoring
1582 * it, else let it set to its current action.
1583 */
1584 if ((istat = SIGNAL (SIGINT, SIG_IGN)) != SIG_DFL)
1585 SIGNAL (SIGINT, istat);
1586 if ((qstat = SIGNAL (SIGQUIT, SIG_IGN)) != SIG_DFL)
1587 SIGNAL (SIGQUIT, qstat);
1588 pstat = SIGNAL (SIGPIPE, pipeser);
1589 mhl (argc, argv); /* FALL THROUGH! */
1590
1591 default:
1592 SIGNAL (SIGINT, istat);
1593 SIGNAL (SIGQUIT, qstat);
1594 SIGNAL (SIGPIPE, SIG_IGN);/* should probably change to block instead */
1595 if (ontty == PITTY)
1596 m_pclose ();
1597 SIGNAL (SIGPIPE, pstat);
1598 invo_name = cp;
1599 if (holder.c_text) {
1600 free (holder.c_text);
1601 holder.c_text = NULL;
1602 }
1603 free_queue (&msghd, &msgtl);
1604 for (c1 = fmthd; c1; c1 = c1->c_next)
1605 c1->c_flags &= ~HDROUTPUT;
1606
1607 a = arglist_head;
1608 while (a) {
1609 if (a->a_nfs)
1610 free(a->a_nfs);
1611 a2 = a->a_next;
1612 free(a);
1613 a = a2;
1614 }
1615 return exitstat;
1616 }
1617 }
1618
1619 #undef adios
1620 #undef done
1621
1622 static void
1623 mhladios (char *what, char *fmt, ...)
1624 {
1625 va_list ap;
1626
1627 va_start(ap, fmt);
1628 advertise (what, NULL, fmt, ap);
1629 va_end(ap);
1630 mhldone (1);
1631 }
1632
1633
1634 static void
1635 mhldone (int status)
1636 {
1637 exitstat = status;
1638 if (mhl_action)
1639 longjmp (mhlenv, DONE);
1640 else
1641 done (exitstat);
1642 }
1643
1644
1645 static int m_pid = NOTOK;
1646 static int sd = NOTOK;
1647
1648 static void
1649 m_popen (char *name)
1650 {
1651 int pd[2];
1652 char *file;
1653 char **arglist;
1654
1655 if (mhl_action && (sd = dup (fileno (stdout))) == NOTOK)
1656 adios ("standard output", "unable to dup()");
1657
1658 if (pipe (pd) == NOTOK)
1659 adios ("pipe", "unable to");
1660
1661 switch (m_pid = fork()) {
1662 case NOTOK:
1663 adios ("fork", "unable to");
1664
1665 case OK:
1666 SIGNAL (SIGINT, SIG_DFL);
1667 SIGNAL (SIGQUIT, SIG_DFL);
1668
1669 close (pd[1]);
1670 if (pd[0] != fileno (stdin)) {
1671 dup2 (pd[0], fileno (stdin));
1672 close (pd[0]);
1673 }
1674 arglist = argsplit(name, &file, NULL);
1675 execvp (file, arglist);
1676 fprintf (stderr, "unable to exec ");
1677 perror (name);
1678 _exit (-1);
1679
1680 default:
1681 close (pd[0]);
1682 if (pd[1] != fileno (stdout)) {
1683 dup2 (pd[1], fileno (stdout));
1684 close (pd[1]);
1685 }
1686 }
1687 }
1688
1689
1690 void
1691 m_pclose (void)
1692 {
1693 if (m_pid == NOTOK)
1694 return;
1695
1696 if (sd != NOTOK) {
1697 fflush (stdout);
1698 if (dup2 (sd, fileno (stdout)) == NOTOK)
1699 adios ("standard output", "unable to dup2()");
1700
1701 clearerr (stdout);
1702 close (sd);
1703 sd = NOTOK;
1704 }
1705 else
1706 fclose (stdout);
1707
1708 pidwait (m_pid, OK);
1709 m_pid = NOTOK;
1710 }
1711
1712
1713 /*
1714 * Compile a format string used by the formatfield option and save it
1715 * for later.
1716 *
1717 * We will want the {text} (and possibly {error}) components for later,
1718 * so look for them and save them if we find them.
1719 */
1720
1721 static void
1722 compile_formatfield(struct mcomp *c1)
1723 {
1724 fmt_compile(c1->c_nfs, &c1->c_fmt, 1);
1725
1726 /*
1727 * As a note to myself and any other poor bastard who is looking through
1728 * this code in the future ....
1729 *
1730 * When the format hash table is reset later on (as it almost certainly
1731 * will be), there will still be references to these components in the
1732 * compiled format instructions. Thus these component references will
1733 * be free'd when the format instructions are free'd (by fmt_free()).
1734 *
1735 * So, in other words ... don't go free'ing them yourself!
1736 */
1737
1738 c1->c_c_text = fmt_findcomp("text");
1739 c1->c_c_error = fmt_findcomp("error");
1740 }
1741
1742 /*
1743 * Compile all of the arguments for our format list.
1744 *
1745 * Iterate through the linked list of format strings and compile them.
1746 * Note that we reset the format hash table before we start, but we do NOT
1747 * reset it between calls to fmt_compile().
1748 *
1749 */
1750
1751 static void
1752 compile_filterargs (void)
1753 {
1754 struct arglist *arg = arglist_head;
1755 struct comp *cptr;
1756 char **ap;
1757
1758 fmt_free(NULL, 1);
1759
1760 while (arg) {
1761 fmt_compile(arg->a_nfs, &arg->a_fmt, 0);
1762 arg = arg->a_next;
1763 }
1764
1765 /*
1766 * Search through and mark any components that are address components
1767 */
1768
1769 for (ap = addrcomps; *ap; ap++) {
1770 cptr = fmt_findcomp (*ap);
1771 if (cptr)
1772 cptr->c_type |= CT_ADDR;
1773 }
1774 }
1775
1776 /*
1777 * Filter the body of a message through a specified format program
1778 */
1779
1780 static void
1781 filterbody (struct mcomp *c1, char *buf, int bufsz, int state, FILE *fp,
1782 m_getfld_state_t gstate)
1783 {
1784 struct mcomp holder;
1785 char name[NAMESZ];
1786 int fdinput[2], fdoutput[2], waitstat;
1787 ssize_t cc;
1788 pid_t writerpid, filterpid;
1789
1790 /*
1791 * Create pipes so we can communicate with our filter process.
1792 */
1793
1794 if (pipe(fdinput) < 0) {
1795 adios(NULL, "Unable to create input pipe");
1796 }
1797
1798 if (pipe(fdoutput) < 0) {
1799 adios(NULL, "Unable to create output pipe");
1800 }
1801
1802 /*
1803 * Here's what we're doing to do.
1804 *
1805 * - Fork ourselves and start writing data to the write side of the
1806 * input pipe (fdinput[1]).
1807 *
1808 * - Fork and exec our filter program. We set the standard input of
1809 * our filter program to be the read side of our input pipe (fdinput[0]).
1810 * Standard output is set to the write side of our output pipe
1811 * (fdoutput[1]).
1812 *
1813 * - We read from the read side of the output pipe (fdoutput[0]).
1814 *
1815 * We're forking because that's the simplest way to prevent any deadlocks.
1816 * (without doing something like switching to non-blocking I/O and using
1817 * select or poll, and I'm not interested in doing that).
1818 */
1819
1820 switch (writerpid = fork()) {
1821 case 0:
1822 /*
1823 * Our child process - just write to the filter input (fdinput[1]).
1824 * Close all other descriptors that we don't need.
1825 */
1826
1827 close(fdinput[0]);
1828 close(fdoutput[0]);
1829 close(fdoutput[1]);
1830
1831 /*
1832 * Call m_getfld() until we're no longer in the BODY state
1833 */
1834
1835 while (state == BODY) {
1836 int bufsz2 = bufsz;
1837 write(fdinput[1], buf, strlen(buf));
1838 state = m_getfld (&gstate, name, buf, &bufsz2, fp);
1839 }
1840
1841 /*
1842 * We should be done; time to exit.
1843 */
1844
1845 close(fdinput[1]);
1846 /*
1847 * Make sure we call _exit(), otherwise we may flush out the stdio
1848 * buffers that we have duplicated from the parent.
1849 */
1850 _exit(0);
1851 break;
1852 case -1:
1853 adios(NULL, "Unable to fork for filter writer process");
1854 break;
1855 }
1856
1857 /*
1858 * Fork and exec() our filter program, after redirecting standard in
1859 * and standard out appropriately.
1860 */
1861
1862 switch (filterpid = fork()) {
1863 char **args, *program;
1864 struct arglist *a;
1865 int i, dat[5], s, argp;
1866
1867 case 0:
1868 /*
1869 * Configure an argument array for us
1870 */
1871
1872 args = argsplit(formatproc, &program, &argp);
1873 args[argp + filter_nargs] = NULL;
1874 dat[0] = 0;
1875 dat[1] = 0;
1876 dat[2] = 0;
1877 dat[3] = BUFSIZ;
1878 dat[4] = 0;
1879
1880 /*
1881 * Pull out each argument and scan them.
1882 */
1883
1884 for (a = arglist_head, i = argp; a != NULL; a = a->a_next, i++) {
1885 args[i] = mh_xmalloc(BUFSIZ);
1886 fmt_scan(a->a_fmt, args[i], BUFSIZ - 1, BUFSIZ, dat);
1887 /*
1888 * fmt_scan likes to put a trailing newline at the end of the
1889 * format string. If we have one, get rid of it.
1890 */
1891 s = strlen(args[i]);
1892 if (args[i][s - 1] == '\n')
1893 args[i][s - 1] = '\0';
1894
1895 if (mhldebug)
1896 fprintf(stderr, "filterarg: fmt=\"%s\", output=\"%s\"\n",
1897 a->a_nfs, args[i]);
1898 }
1899
1900 if (dup2(fdinput[0], STDIN_FILENO) < 0) {
1901 adios("formatproc", "Unable to dup2() standard input");
1902 }
1903 if (dup2(fdoutput[1], STDOUT_FILENO) < 0) {
1904 adios("formatproc", "Unable to dup2() standard output");
1905 }
1906
1907 /*
1908 * Close everything (especially the old input and output
1909 * descriptors, since they've been dup'd to stdin and stdout),
1910 * and exec the formatproc.
1911 */
1912
1913 close(fdinput[0]);
1914 close(fdinput[1]);
1915 close(fdoutput[0]);
1916 close(fdoutput[1]);
1917
1918 execvp(formatproc, args);
1919
1920 adios(formatproc, "Unable to execute filter");
1921
1922 break;
1923
1924 case -1:
1925 adios(NULL, "Unable to fork format program");
1926 }
1927
1928 /*
1929 * Close everything except our reader (fdoutput[0]);
1930 */
1931
1932 close(fdinput[0]);
1933 close(fdinput[1]);
1934 close(fdoutput[1]);
1935
1936 /*
1937 * As we read in this data, send it to putcomp
1938 */
1939
1940 holder.c_text = buf;
1941
1942 while ((cc = read(fdoutput[0], buf, bufsz - 1)) > 0) {
1943 buf[cc] = '\0';
1944 putcomp(c1, &holder, BODYCOMP);
1945 }
1946
1947 if (cc < 0) {
1948 adios(NULL, "reading from formatproc");
1949 }
1950
1951 /*
1952 * See if we got any errors along the way. I'm a little leery of calling
1953 * waitpid() without WNOHANG, but it seems to be the most correct solution.
1954 */
1955
1956 if (waitpid(filterpid, &waitstat, 0) < 0) {
1957 if (errno != ECHILD) {
1958 adios("filterproc", "Unable to determine status");
1959 }
1960 } else {
1961 if (! (WIFEXITED(waitstat) && WEXITSTATUS(waitstat) == 0)) {
1962 pidstatus(waitstat, stderr, "filterproc");
1963 }
1964 }
1965
1966 if (waitpid(writerpid, &waitstat, 0) < 0) {
1967 if (errno != ECHILD) {
1968 adios("writer process", "Unable to determine status");
1969 done(1);
1970 }
1971 } else {
1972 if (! (WIFEXITED(waitstat) && WEXITSTATUS(waitstat) == 0)) {
1973 pidstatus(waitstat, stderr, "writer process");
1974 done(1);
1975 }
1976 }
1977
1978 close(fdoutput[0]);
1979 }